partial backport of support for adbh's new interface to backup_command and restore_command
these methods can return lists or strings which are passed to subprocess.call
without or with the shell=True parameter respectively.
"""helper functions for application hooks:organization: Logilab:copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses"""__docformat__="restructuredtext en"fromcubicwebimportRepositoryErrorfromcubicweb.server.poolimportSingleLastOperationdefentity_oldnewvalue(entity,attr):"""returns the couple (old attr value, new attr value) NOTE: will only work in a before_update_entity hook """# get new value and remove from local dict to force a db query to# fetch old valuenewvalue=entity.pop(attr,None)oldvalue=getattr(entity,attr)ifnewvalueisnotNone:entity[attr]=newvaluereturnoldvalue,newvaluedefrproperty(session,rtype,eidfrom,eidto,rprop):rschema=session.repo.schema[rtype]subjtype=session.describe(eidfrom)[0]objtype=session.describe(eidto)[0]returnrschema.rproperty(subjtype,objtype,rprop)defcheck_internal_entity(session,eid,internal_names):"""check that the entity's name is not in the internal_names list. raise a RepositoryError if so, else return the entity's name """name=session.entity_from_eid(eid).nameifnameininternal_names:raiseRepositoryError('%s entity can\'t be deleted'%name)returnnamedefget_user_sessions(repo,ueid):forsessioninrepo._sessions.values():ifueid==session.user.eid:yieldsession# mail related ################################################################classSendMailOp(SingleLastOperation):def__init__(self,session,msg=None,recipients=None,**kwargs):# may not specify msg yet, as# `cubicweb.sobjects.supervision.SupervisionMailOp`ifmsgisnotNone:assertrecipientsself.to_send=[(msg,recipients)]else:assertrecipientsisNoneself.to_send=[]super(SendMailOp,self).__init__(session,**kwargs)defregister(self,session):previous=super(SendMailOp,self).register(session)ifprevious:self.to_send=previous.to_send+self.to_senddefcommit_event(self):self.repo.threaded_task(self.sendmails)defsendmails(self):self.config.sendmails(self.to_send)# state related ###############################################################defprevious_state(session,eid):"""return the state of the entity with the given eid, usually since it's changing in the current transaction. Due to internal relation hooks, the relation may has been deleted at this point, so we have handle that """# don't check eid in session.transaction_data.get('neweids', ()), we don't# want to miss previous state of entity whose state change in the same# transaction as it's being createdpending=session.transaction_data.get('pendingrelations',())foreidfrom,rtype,eidtoinreversed(pending):ifrtype=='in_state'andeidfrom==eid:rset=session.execute('Any S,N WHERE S eid %(x)s, S name N',{'x':eidto},'x')returnrset.get_entity(0,0)rset=session.execute('Any S,N WHERE X eid %(x)s, X in_state S, S name N',{'x':eid},'x')ifrset:returnrset.get_entity(0,0)