
- enable public/private routes exectuion - implementing new DB model - routes - refactoring service model to allow sub-apps - examples/hello-lambda.sh was changed to reflect new routes API
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
|
|
class AppView(object):
|
|
|
|
def __init__(self, stored_app, fn_app):
|
|
self.app = stored_app
|
|
self.fn_app = fn_app
|
|
|
|
def view(self):
|
|
return {
|
|
"id": self.app.id,
|
|
"name": self.app.name,
|
|
"config": self.fn_app.config,
|
|
"description": self.app.description,
|
|
"created_at": self.app.created_at,
|
|
"updated_at": self.app.updated_at,
|
|
"project_id": self.app.project_id,
|
|
}
|
|
|
|
|
|
class AppRouteView(object):
|
|
|
|
def __init__(self, api_url, project_id, fn_app_routes):
|
|
self.routes = fn_app_routes
|
|
self.api_url = api_url
|
|
self.project_id = project_id
|
|
|
|
def view(self):
|
|
view = []
|
|
for route in self.routes:
|
|
if not route.is_public:
|
|
path = ("{}/private/{}/{}{}".format(
|
|
self.api_url, self.project_id,
|
|
route.appname, route.path))
|
|
else:
|
|
path = ("{}/public/{}{}".format(
|
|
self.api_url, route.appname, route.path))
|
|
view.append({
|
|
"path": path,
|
|
"type": route.type,
|
|
"memory": route.memory,
|
|
"image": route.image,
|
|
"is_public": route.is_public,
|
|
})
|
|
return view
|