poppy/poppy/distributed_task/taskflow/task/delete_ssl_certificate_task...

72 lines
2.4 KiB
Python

# Copyright (c) 2015 Rackspace, 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 oslo_config import cfg
from taskflow import task
from poppy.distributed_task.utils import memoized_controllers
from poppy.openstack.common import log
LOG = log.getLogger(__name__)
conf = cfg.CONF
conf(project='poppy', prog='poppy', args=[])
class DeleteProviderSSLCertificateTask(task.Task):
default_provides = "responders"
def execute(self, providers_list_json, cert_obj_json):
# Note(tonytan4ever): For right now there is no
# way to code the process of deleting a certificate object
# from Akamai
responders = []
return responders
class SendNotificationTask(task.Task):
def execute(self, project_id, responders, domain_name, cert_type):
service_controller = memoized_controllers.task_controllers('poppy')
notification_content = (
"Project ID: %s, Domain Name: %s, Cert type: %s" %
(project_id, domain_name, cert_type))
for n_driver in service_controller._driver.notification:
service_controller.notification_wrapper.send(
n_driver,
n_driver.obj.notification_subject,
notification_content)
return
class DeleteStorageSSLCertificateTask(task.Task):
def execute(self, project_id, domain_name, cert_type):
service_controller, self.storage_controller = \
memoized_controllers.task_controllers('poppy', 'storage')
self.storage_controller.delete_cert(project_id, domain_name, cert_type)
def revert(self, *args, **kwargs):
try:
if getattr(self, 'storage_controller') \
and self.storage_controller._driver.session:
self.storage_controller._driver.close_connection()
LOG.info('Cassandra session being shutdown')
except AttributeError:
LOG.info('Cassandra session already shutdown')