017d25f49e
E265 block comment should start with '# ' Change-Id: I1a8b971776deb8b05b84be169571b9f1e573d2ba
118 lines
4.4 KiB
Python
118 lines
4.4 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
|
|
from murano.services import actions
|
|
from murano.services import states
|
|
|
|
|
|
class SessionServices(object):
|
|
@staticmethod
|
|
def get_sessions(environment_id, state=None):
|
|
"""Get list of sessions for specified environment.
|
|
|
|
:param environment_id: Environment Id
|
|
:param state: murano.services.states.EnvironmentStatus
|
|
:return: Sessions for specified Environment, if SessionState is
|
|
not defined all sessions for specified environment is returned.
|
|
"""
|
|
|
|
unit = db_session.get_session()
|
|
# Here we duplicate logic for reducing calls to database
|
|
# Checks for validation is same as in validate.
|
|
query = unit.query(models.Session).filter(
|
|
# Get all session for this environment
|
|
models.Session.environment_id == environment_id,
|
|
# Only sessions with same version as current env version are valid
|
|
)
|
|
|
|
if state:
|
|
# in this state, if state is not specified return in all states
|
|
query = query.filter(models.Session.state == state),
|
|
|
|
return query.order_by(models.Session.version.desc(),
|
|
models.Session.updated.desc()).all()
|
|
|
|
@staticmethod
|
|
def create(environment_id, user_id):
|
|
"""Creates session object for specific environment for specified user.
|
|
|
|
:param environment_id: Environment Id
|
|
:param user_id: User Id
|
|
:return: Created session
|
|
"""
|
|
unit = db_session.get_session()
|
|
environment = unit.query(models.Environment).get(environment_id)
|
|
|
|
session = models.Session()
|
|
session.environment_id = environment.id
|
|
session.user_id = user_id
|
|
session.state = states.SessionState.OPENED
|
|
# used for checking if other sessions was deployed before this one
|
|
session.version = environment.version
|
|
# all changes to environment is stored here, and translated to
|
|
# environment only after deployment completed
|
|
session.description = environment.description
|
|
|
|
with unit.begin():
|
|
unit.add(session)
|
|
|
|
return session
|
|
|
|
@staticmethod
|
|
def validate(session):
|
|
"""Session is valid only if no other session for same.
|
|
environment was already deployed on in deploying state,
|
|
|
|
:param session: Session for validation
|
|
"""
|
|
|
|
# if other session is deploying now current session is invalid
|
|
unit = db_session.get_session()
|
|
|
|
# if environment version is higher then version on which current
|
|
# session is created then other session was already deployed
|
|
current_env = unit.query(models.Environment).\
|
|
get(session.environment_id)
|
|
if current_env.version > session.version:
|
|
return False
|
|
|
|
# if other session is deploying now current session is invalid
|
|
other_is_deploying = unit.query(models.Session).filter_by(
|
|
environment_id=session.environment_id,
|
|
state=states.SessionState.DEPLOYING
|
|
).count() > 0
|
|
if session.state == states.SessionState.OPENED and other_is_deploying:
|
|
return False
|
|
|
|
return True
|
|
|
|
@staticmethod
|
|
def deploy(session, environment, unit, token):
|
|
"""Prepares environment for deployment and send deployment command to
|
|
orchestration engine
|
|
|
|
:param session: session that is going to be deployed
|
|
:param unit: SQLalchemy session
|
|
:param token: auth token that is going to be used by orchestration
|
|
"""
|
|
|
|
deleted = session.description['Objects'] is None
|
|
action_name = None if deleted else 'deploy'
|
|
actions.ActionServices.submit_task(
|
|
action_name, environment.id,
|
|
{}, environment, session,
|
|
token, unit)
|