Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
NACSOS Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MCC APSIS
NACSOS
NACSOS Core
Merge requests
!104
Main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Main
main
into
production
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Tim Repke
requested to merge
main
into
production
7 months ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
05d1c00d
Prev
Next
Show latest version
1 file
+
13
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
05d1c00d
add test db endpoint, fix startup error
· 05d1c00d
Tim Repke
authored
7 months ago
server/api/routes/ping.py
+
13
−
0
Options
from
fastapi
import
APIRouter
from
fastapi.responses
import
PlainTextResponse
from
sqlalchemy
import
select
,
func
as
F
from
nacsos_data.db.schemas.projects
import
Project
from
server.pipelines
import
tasks
from
server.util.logging
import
get_logger
from
server.util.security
import
InsufficientPermissions
from
server.data
import
db_engine
logger
=
get_logger
(
'
nacsos.api.route.ping
'
)
router
=
APIRouter
()
@@ -57,6 +61,15 @@ async def perm():
raise
InsufficientPermissions
(
'
You do not have permission to edit this data import.
'
)
@router.get
(
'
/database
'
)
async
def
db_test
():
async
with
db_engine
.
engine
.
connect
()
as
session
:
rslt
=
(
await
session
.
execute
(
select
(
F
.
count
(
Project
.
project_id
)))).
scalar
()
logger
.
debug
(
f
'
There are
{
rslt
:
,
}
projects on the platform
'
)
await
session
.
close
()
return
rslt
@router.post
(
'
/{name}
'
,
response_class
=
PlainTextResponse
)
async
def
_ping
(
name
:
str
)
->
str
:
return
f
'
Hello
{
name
}
'
Loading