#-*- coding: utf-8 -*- # Copyright 2010-2013 Calculate Ltd. http://www.calculate-linux.org # # 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 sys from calculate.core.server.func import Action from calculate.lib.cl_lang import setLocalTranslate,getLazyLocalTranslate from calculate.lib.utils.files import FilesError from calculate.install.install import (MigrationError, TemplatesError, InstallError) from calculate.update.update import UpdateError setLocalTranslate('cl_update3',sys.modules[__name__]) __ = getLazyLocalTranslate(_) class ClUpdateAction(Action): """ Действие обновление конфигурационных файлов """ # ошибки, которые отображаются без подробностей native_error = (FilesError,UpdateError) successMessage = None failedMessage = __("Update failed") interruptMessage = __("Update manually interrupted") # список задач для дейсвия tasks = [ {'name':'sync_reps', 'message' : __("Syncing {cl_update_sync_rep} repositories"), 'method':'Update.syncRepositories(update.cl_update_sync_rep)', 'condition':lambda Get:Get('cl_update_sync_rep') }, {'name':'dispatch', 'method':'Update.applyTemplates(install.cl_source,cl_template_clt_set,'\ 'True,None)', 'condition':lambda Get:(Get('cl_update_rev_set') == 'on' or Get('cl_rebuild_world_set') == 'on') }, # сообщение удачного завершения при обновлении ревизии {'name':'success_rev', 'message' : __("Revision update finished!"), 'condition':lambda Get:Get('cl_update_rev_set') == 'on' }, # сообщение удачного завершения при пересоздании world {'name':'success_world', 'message' : __("World rebuild finished!"), 'condition':lambda Get:Get('cl_rebuild_world_set') == 'on' }]