a757b8f842
Search with name only matches package name and search with keyword can matches names, tags ..etc Change-Id: Ia86befcf0a126f4e532c847df44170a898b38824 Closes-Bug: #1500865
80 lines
2.8 KiB
Python
80 lines
2.8 KiB
Python
# Copyright (c) 2013 Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
from murano.db import models
|
|
from murano.db import session as db_session
|
|
|
|
stats = None
|
|
|
|
SUPPORTED_PARAMS = ('id', 'order_by', 'category', 'marker', 'tag',
|
|
'class_name', 'limit', 'type', 'fqn', 'category', 'owned',
|
|
'search', 'include_disabled', 'sort_dir', 'name')
|
|
LIST_PARAMS = ('id', 'category', 'tag', 'class', 'order_by')
|
|
ORDER_VALUES = ('fqn', 'name', 'created')
|
|
PKG_PARAMS_MAP = {'display_name': 'name',
|
|
'full_name': 'fully_qualified_name',
|
|
'ui': 'ui_definition',
|
|
'logo': 'logo',
|
|
'package_type': 'type',
|
|
'description': 'description',
|
|
'author': 'author',
|
|
'classes': 'class_definitions',
|
|
'tags': 'tags',
|
|
'supplier': 'supplier',
|
|
'supplier_logo': 'supplier_logo'}
|
|
|
|
|
|
def get_draft(environment_id=None, session_id=None):
|
|
unit = db_session.get_session()
|
|
# TODO(all): When session is deployed should be returned env.description
|
|
if session_id:
|
|
session = unit.query(models.Session).get(session_id)
|
|
return session.description
|
|
else:
|
|
environment = unit.query(models.Environment).get(environment_id)
|
|
return environment.description
|
|
|
|
|
|
def save_draft(session_id, draft):
|
|
unit = db_session.get_session()
|
|
session = unit.query(models.Session).get(session_id)
|
|
|
|
session.description = draft
|
|
session.save(unit)
|
|
|
|
|
|
def get_service_status(environment_id, session_id, service):
|
|
status = 'draft'
|
|
|
|
unit = db_session.get_session()
|
|
session_state = unit.query(models.Session).get(session_id).state
|
|
|
|
entities = [u['id'] for u in service['units']]
|
|
reports_count = unit.query(models.Status).filter(
|
|
models.Status.environment_id == environment_id and
|
|
models.Status.session_id == session_id and
|
|
models.Status.entity_id.in_(entities)
|
|
).count()
|
|
|
|
if session_state == 'deployed':
|
|
status = 'finished'
|
|
|
|
if session_state == 'deploying' and reports_count == 0:
|
|
status = 'pending'
|
|
|
|
if session_state == 'deploying' and reports_count > 0:
|
|
status = 'inprogress'
|
|
|
|
return status
|