1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
<?php
/**
* FusionForge Mailing Lists Facility
*
* Copyright 2003 Guillaume Smet
* http://fusionforge.org/
*
* @version $Id$
*
* This file is part of FusionForge.
*
* FusionForge 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 2 of the License, or
* (at your option) any later version.
*
* FusionForge 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/*
This work is based on Tim Perdue's work on the forum stuff
*/
require_once 'MailmanList.class.php';
require_once 'MailmanListDao.class.php';
require_once 'common/dao/CodendiDataAccess.class.php';
class MailmanListFactory extends Error {
/**
* The Group object.
*
* @var object $Group.
*/
var $Group;
/**
* The mailing lists array.
*
* @var array $mailingLists.
*/
var $mailingLists;
/**
* DAO
*
* @var MailingListDao $mailingDAO.
*/
var $_mailingDAO;
/**
* Constructor.
*
* @param object The Group object to which these mailing lists are associated.
*/
function MailmanListFactory(& $Group) {
$this->_mailingDAO = new MailmanListDao(CodendiDataAccess::instance());
$this->Error();
if (!$Group || !is_object($Group)) {
exit_no_group();
}
if ($Group->isError()) {
$this->setError('MailmanListFactory: '.$Group->getErrorMessage());
return false;
}
$this->Group =& $Group;
return true;
}
/**
* getGroup - get the Group object this MailmanListFactory is associated with.
*
* @return object The Group object.
*/
function &getGroup() {
return $this->Group;
}
/**
* getMailmanLists - get an array of MailmanList objects for this Group.
*
* @param boolean $admin if we are in admin mode (we want to see deleted lists)
* @return array The array of MailmanList objects.
*/
function &getMailmanLists() {
$current_user=UserManager::instance()->getCurrentUser();
if (isset($this->mailingLists) && is_array($this->mailingLists)) {
return $this->mailingLists;
}
if (islogged() && $current_user->isMember($this->Group->getID())) {
$public_flag='0,1';
} else {
$public_flag='1';
}
$result =& $this->_mailingDAO->searchByGroupId($this->Group->getID());
if (!$result) {
$this->setError(_('Error Getting mailing list')._(': ').db_error());
return false;
} else {
$this->mailingLists = array();
while ($arr =& $result->getRow()) {
$this->mailingLists[] = new MailmanList($this->Group->getID(), $arr['group_list_id'], $arr);
}
}
return $this->mailingLists;
}
/**
* compareInfos - replace mailman user info by forge user info
*
* @return string url of the info page
*/
function compareInfos()
{
$current_user=UserManager::instance()->getCurrentUser();
$mail=$current_user->getEmail();
$passwd= $current_user->getUserPw();
$name= $current_user->getRealName();
$result =& $this->_mailingDAO->compareInfos($mail);
if (!$result) {
return false;
}
else
{
while( $arr =& $result->getRow())
{
if($arr['password']!=$passwd || $arr['name']!=$name)
{
return true;
}
}
}
return false;
}
/**
* updateInfos - replace mailman user info by forge user info
*
* @return string url of the info page
*/
function updateInfos()
{
$current_user=UserManager::instance()->getCurrentUser();
$mail=$current_user->getEmail();
$passwd= $current_user->getUserPw();
$name= $current_user->getRealName();
$result =& $this->_mailingDAO->updateInfos($mail,$passwd,$name);
if (!$result) {
return false;
}
htmlRedirect('/plugins/mailman/index.php?group_id='.$this->Group->getId());
return $result;
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|