kite/kite/api/v1/controllers/group.py

37 lines
1.2 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import pecan
from pecan import rest
import wsme
import wsmeext.pecan as wsme_pecan
from kite.api.v1 import models
class GroupController(rest.RestController):
@wsme_pecan.wsexpose(models.Group, wsme.types.text)
def put(self, name):
pecan.request.storage.create_group(name)
return models.Group(name=name)
@wsme_pecan.wsexpose(None, wsme.types.text, status_code=204)
def delete(self, name):
pecan.request.storage.delete_group(name)
@wsme.validate(models.GroupKey)
@wsme_pecan.wsexpose(models.GroupKey, body=models.GroupKeyRequest)
def post(self, group_request):
group_request.verify()
return group_request.new_response()