123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/core/triggers/interface_50_modMailmanspip_Mailmanspipsynchro.class.php
- * \ingroup core
- * \brief File to manage triggers Mailman and Spip
- */
- require_once DOL_DOCUMENT_ROOT.'/core/triggers/dolibarrtriggers.class.php';
- /**
- * Class of triggers for MailmanSpip module
- */
- class InterfaceMailmanSpipsynchro extends DolibarrTriggers
- {
- public $family = 'mailmanspip';
- public $description = "Triggers of this module allows to synchronize Mailman an Spip.";
- /**
- * Version of the trigger
- * @var string
- */
- public $version = self::VERSION_DOLIBARR;
- /**
- * @var string Image of the trigger
- */
- public $picto = 'technic';
- /**
- * Function called when a Dolibarrr business event is done.
- * All functions "runTrigger" are triggered if file is inside directory htdocs/core/triggers or htdocs/module/code/triggers (and declared)
- *
- * @param string $action Event action code
- * @param Object $object Object
- * @param User $user Object user
- * @param Translate $langs Object langs
- * @param conf $conf Object conf
- * @return int <0 if KO, 0 if no triggered ran, >0 if OK
- */
- public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf)
- {
- if (empty($conf->mailmanspip->enabled)) return 0; // Module not active, we do nothing
- require_once DOL_DOCUMENT_ROOT."/mailmanspip/class/mailmanspip.class.php";
- require_once DOL_DOCUMENT_ROOT."/user/class/usergroup.class.php";
- if ($action == 'CATEGORY_LINK')
- {
- dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
- // We add subscription if we change category (new category may means more mailing-list to subscribe)
- if (is_object($object->context['linkto']) && method_exists($object->context['linkto'], 'add_to_abo') && $object->context['linkto']->add_to_abo() < 0)
- {
- $this->error=$object->context['linkto']->error;
- $this->errors=$object->context['linkto']->errors;
- $return=-1;
- }
- else
- {
- $return=1;
- }
- return $return;
- }
- elseif ($action == 'CATEGORY_UNLINK')
- {
- dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
- // We remove subscription if we change category (lessw category may means less mailing-list to subscribe)
- if (is_object($object->context['unlinkoff']) && method_exists($object->context['unlinkoff'], 'del_to_abo') && $object->context['unlinkoff']->del_to_abo() < 0)
- {
- $this->error=$object->context['unlinkoff']->error;
- $this->errors=$object->context['unlinkoff']->errors;
- $return=-1;
- }
- else
- {
- $return=1;
- }
- return $return;
- }
- // Members
- elseif ($action == 'MEMBER_VALIDATE' || $action == 'MEMBER_MODIFY')
- {
- dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
- $return=0;
- // Add user into some linked tools (mailman, spip, etc...)
- if (($object->oldcopy->email != $object->email) || ($object->oldcopy->typeid != $object->typeid)) // TODO Do del/add also if type change
- {
- if (is_object($object->oldcopy) && ($object->oldcopy->email != $object->email)) // If email has changed we delete mailman subscription for old email
- {
- if ($object->oldcopy->del_to_abo() < 0)
- {
- if (! empty($object->oldcopy->error)) $this->error=$object->oldcopy->error;
- $this->errors=$object->oldcopy->errors;
- $return=-1;
- }
- else
- {
- $return=1;
- }
- }
- // We add subscription if new email or new type (new type may means more mailing-list to subscribe)
- if ($object->add_to_abo() < 0)
- {
- if (! empty($object->error)) $this->error=$object->error;
- $this->errors=$object->errors;
- $return=-1;
- }
- else
- {
- $return=1;
- }
- }
- return $return;
- }
- elseif ($action == 'MEMBER_RESILIATE' || $action == 'MEMBER_DELETE')
- {
- dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
- $return=0;
- // Remove from external tools (mailman, spip, etc...)
- if ($object->del_to_abo() < 0)
- {
- if (! empty($object->error)) $this->error=$object->error;
- $this->errors=$object->errors;
- $return=-1;
- }
- else
- {
- $return=1;
- }
- return $return;
- }
- return 0;
- }
- }
|