mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-09 19:13:03 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
"""Service handlers
|
|
|
|
Currently GET-only, no actions can be taken to modify services.
|
|
"""
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import json
|
|
|
|
from ..scopes import Scope, needs_scope
|
|
from .base import APIHandler
|
|
|
|
|
|
class ServiceListAPIHandler(APIHandler):
|
|
@needs_scope('list:services')
|
|
def get(self):
|
|
data = {}
|
|
service_scope = self.parsed_scopes['list:services']
|
|
for name, service in self.services.items():
|
|
if service_scope == Scope.ALL or name in service_scope.get("service", {}):
|
|
model = self.service_model(service)
|
|
data[name] = model
|
|
self.write(json.dumps(data))
|
|
|
|
|
|
class ServiceAPIHandler(APIHandler):
|
|
@needs_scope('read:services', 'read:services:name', 'read:roles:services')
|
|
def get(self, service_name):
|
|
service = self.services[service_name]
|
|
self.write(json.dumps(self.service_model(service)))
|
|
|
|
|
|
default_handlers = [
|
|
(r"/api/services", ServiceListAPIHandler),
|
|
(r"/api/services/([^/]+)", ServiceAPIHandler),
|
|
]
|