2010-02-25 04:28:41 +00:00
|
|
|
<?php
|
2020-06-28 23:41:46 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-02-25 04:28:41 +00:00
|
|
|
/**
|
|
|
|
* Table Definition for local_group
|
|
|
|
*/
|
|
|
|
|
2020-06-28 23:41:46 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
class Local_group extends Managed_DataObject
|
2010-02-25 04:28:41 +00:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'local_group'; // table name
|
|
|
|
public $group_id; // int(4) primary_key not_null
|
|
|
|
public $nickname; // varchar(64) unique_key
|
2020-06-28 23:41:46 +01:00
|
|
|
public $created; // datetime()
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2010-02-25 04:28:41 +00:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2010-02-25 13:44:15 +00:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
public static function schemaDef()
|
2010-02-25 13:44:15 +00:00
|
|
|
{
|
2011-08-22 22:52:02 +01:00
|
|
|
return array(
|
|
|
|
'description' => 'Record for a user group on the local site, with some additional info not in user_group',
|
|
|
|
'fields' => array(
|
|
|
|
'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group represented'),
|
|
|
|
'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'group represented'),
|
2020-06-28 23:41:46 +01:00
|
|
|
'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
|
|
|
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
2011-08-22 22:52:02 +01:00
|
|
|
),
|
|
|
|
'primary key' => array('group_id'),
|
|
|
|
'foreign keys' => array(
|
|
|
|
'local_group_group_id_fkey' => array('user_group', array('group_id' => 'id')),
|
|
|
|
),
|
|
|
|
'unique keys' => array(
|
|
|
|
'local_group_nickname_key' => array('nickname'),
|
|
|
|
),
|
|
|
|
);
|
2010-02-25 13:44:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 00:16:03 +01:00
|
|
|
public function getProfile()
|
|
|
|
{
|
2015-05-26 12:14:26 +01:00
|
|
|
return $this->getGroup()->getProfile();
|
2013-10-17 00:16:03 +01:00
|
|
|
}
|
|
|
|
|
2013-11-02 16:27:50 +00:00
|
|
|
public function getGroup()
|
|
|
|
{
|
2015-05-26 12:14:26 +01:00
|
|
|
$group = new User_group();
|
|
|
|
$group->id = $this->group_id;
|
|
|
|
$group->find(true);
|
|
|
|
if (!$group instanceof User_group) {
|
|
|
|
common_log(LOG_ERR, 'User_group does not exist for Local_group: '.$this->group_id);
|
2015-07-09 23:28:36 +01:00
|
|
|
throw new NoSuchGroupException(array('id' => $this->group_id));
|
2015-05-26 12:14:26 +01:00
|
|
|
}
|
|
|
|
return $group;
|
2013-11-02 16:27:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-28 23:41:46 +01:00
|
|
|
public function setNickname($nickname)
|
2010-02-25 13:44:15 +00:00
|
|
|
{
|
|
|
|
$this->decache();
|
2020-07-27 17:10:33 +01:00
|
|
|
$modified = common_sql_now();
|
2020-07-26 13:28:05 +01:00
|
|
|
$result = $this->query(sprintf(
|
2020-07-27 17:10:33 +01:00
|
|
|
<<<'END'
|
|
|
|
UPDATE local_group SET nickname = %1$s, modified = %2$s
|
|
|
|
WHERE group_id = %3$d;
|
|
|
|
END,
|
2020-07-26 13:28:05 +01:00
|
|
|
$this->_quote($nickname),
|
2020-07-27 17:10:33 +01:00
|
|
|
$this->_quote($modified),
|
2020-07-26 13:28:05 +01:00
|
|
|
$this->group_id
|
|
|
|
));
|
2010-02-25 13:44:15 +00:00
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
$this->nickname = $nickname;
|
2020-07-27 17:10:33 +01:00
|
|
|
$this->modified = $modified;
|
2010-02-25 13:44:15 +00:00
|
|
|
$this->encache();
|
|
|
|
} else {
|
|
|
|
common_log_db_error($local, 'UPDATE', __FILE__);
|
2010-07-29 12:01:04 +01:00
|
|
|
// TRANS: Server exception thrown when updating a local group fails.
|
2010-02-25 13:44:15 +00:00
|
|
|
throw new ServerException(_('Could not update local group.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2010-02-25 04:28:41 +00:00
|
|
|
}
|