forked from GNUsocial/gnu-social
Make site profiles work
This commit is contained in:
264
lib/siteprofile.php
Normal file
264
lib/siteprofile.php
Normal file
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* A site profile is a set of default settings for a particular style of
|
||||
* StatusNet site: public, private, community, etc.
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* LICENCE: This program 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.
|
||||
*
|
||||
* 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 Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @category Installation
|
||||
* @package StatusNet
|
||||
* @author Zach Copley <zach@status.net>
|
||||
* @copyright 2011 StatusNet, Inc.
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper class for getting the settings for a particular site profile
|
||||
*/
|
||||
class SiteProfile
|
||||
{
|
||||
/**
|
||||
* Returns the config settings for a site profile by name
|
||||
*
|
||||
* @param string $name name of a site profile
|
||||
* @return array config settings
|
||||
*/
|
||||
static public function getSettings($name)
|
||||
{
|
||||
$sprofileClass = ucfirst($name) . "Site";
|
||||
|
||||
if (class_exists($sprofileClass)) {
|
||||
return $sprofileClass::getSettings();
|
||||
} else {
|
||||
common_log(
|
||||
LOG_ERR,
|
||||
"Unknown site profile '{$name}' specified in config file.",
|
||||
__FILE__
|
||||
);
|
||||
return array();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Site profile settings contain the list of the default settings (and
|
||||
* possibly other information for a particular flavor of StatusNet
|
||||
* installation). These will overwrite base defaults in $config global.
|
||||
*
|
||||
* @category Installation
|
||||
* @package StatusNet
|
||||
* @author Zach Copley <zach@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
abstract class SiteProfileSettings
|
||||
{
|
||||
abstract static function getSettings();
|
||||
}
|
||||
|
||||
/**
|
||||
* Settings for a 'public' site
|
||||
*/
|
||||
class PublicSite extends SiteProfileSettings
|
||||
{
|
||||
/**
|
||||
* Get the settings for this site profile
|
||||
*
|
||||
* @return type array an array of settings
|
||||
*/
|
||||
static function getSettings() {
|
||||
return array(
|
||||
'site' => array(
|
||||
'inviteonly' => false,
|
||||
'private' => false
|
||||
),
|
||||
'plugins' => array(
|
||||
'default' => array(
|
||||
'Activity' => null,
|
||||
'Bookmark' => null,
|
||||
'ClientSideShorten' => null,
|
||||
'Directory' => null,
|
||||
'Event' => null,
|
||||
'ExtendedProfile' => null,
|
||||
'Geonames' => null,
|
||||
'Gravatar' => null,
|
||||
'OpenID' => null,
|
||||
'OStatus' => null,
|
||||
'Poll' => null,
|
||||
'QnA' => null,
|
||||
'SearchSub' => null,
|
||||
'StrictTransportSecurity' => null,
|
||||
'TagSub' => null
|
||||
),
|
||||
'discovery' =>
|
||||
array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Settings for a 'private' site
|
||||
*
|
||||
* // XXX Too business oriented?
|
||||
*/
|
||||
class PrivateSite extends SiteProfileSettings
|
||||
{
|
||||
/**
|
||||
* Get the settings for this site profile
|
||||
*
|
||||
* @return type array an array of settings
|
||||
*/
|
||||
static function getSettings() {
|
||||
return array(
|
||||
'site' => array(
|
||||
'inviteonly' => true,
|
||||
'private' => true
|
||||
),
|
||||
'plugins' => array(
|
||||
'default' => array(
|
||||
'Activity' => null,
|
||||
'Bookmark' => null,
|
||||
'ClientSideShorten' => null,
|
||||
'Directory' => null,
|
||||
'Event' => null,
|
||||
'ExtendedProfile' => null,
|
||||
'EmailRegistration' => null,
|
||||
'Geonames' => null,
|
||||
'Gravatar' => null,
|
||||
'NewMenu' => null,
|
||||
'MobileProfile' => null,
|
||||
'OpenID' => null,
|
||||
'Poll' => null,
|
||||
'QnA' => null,
|
||||
'SearchSub' => null,
|
||||
'StrictTransportSecurity' => null,
|
||||
'TagSub' => null
|
||||
)
|
||||
),
|
||||
'profile' => array('delete' => 'true'),
|
||||
'license' => array('type' => 'private'),
|
||||
'attachments' => array(
|
||||
// Only allow uploads of pictures and MS Office files
|
||||
'supported' => array(
|
||||
'image/png',
|
||||
'image/jpeg',
|
||||
'image/gif',
|
||||
'image/svg+xml',
|
||||
'application/pdf',
|
||||
'application/msword',
|
||||
'application/vnd.ms-office',
|
||||
'application/vnd.ms-excel',
|
||||
'application/vnd.ms-powerpoint',
|
||||
'application/ogg'
|
||||
)
|
||||
),
|
||||
'discovery' => array('cors' => false) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Settings for a 'community' site
|
||||
*/
|
||||
class CommunitySite extends SiteProfileSettings
|
||||
{
|
||||
/**
|
||||
* Get the settings for this site profile
|
||||
*
|
||||
* @return type array an array of settings
|
||||
*/
|
||||
static function getSettings() {
|
||||
return array(
|
||||
'site' => array(
|
||||
'inviteonly' => true,
|
||||
'private' => false
|
||||
),
|
||||
'plugins' => array(
|
||||
'default' => array(
|
||||
'Activity' => null,
|
||||
'Bookmark' => null,
|
||||
'ClientSideShorten' => null,
|
||||
'Directory' => null,
|
||||
'Event' => null,
|
||||
'Geonames' => null,
|
||||
'Gravatar' => null,
|
||||
'OpenID' => null,
|
||||
'OStatus' => null,
|
||||
'Poll' => null,
|
||||
'QnA' => null,
|
||||
'SearchSub' => null,
|
||||
'StrictTransportSecurity' => null,
|
||||
'TagSub' => null
|
||||
),
|
||||
'discovery' =>
|
||||
array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Settings for a 'singleuser' site
|
||||
*/
|
||||
class SingleuserSite extends SiteProfileSettings
|
||||
{
|
||||
/**
|
||||
* Get the settings for this site profile
|
||||
*
|
||||
* @return type array an array of settings
|
||||
*/
|
||||
static function getSettings() {
|
||||
return array(
|
||||
'singleuser' => array('enabled' => true),
|
||||
'site' => array(
|
||||
'private' => false,
|
||||
'closed' => true,
|
||||
),
|
||||
'plugins' => array(
|
||||
'default' => array(
|
||||
'Activity' => null,
|
||||
'Bookmark' => null,
|
||||
'ClientSideShorten' => null,
|
||||
'Event' => null,
|
||||
'Geonames' => null,
|
||||
'NewMenu' => null,
|
||||
'MobileProfile' => null,
|
||||
'OpenID' => null,
|
||||
'OStatus' => null,
|
||||
'Poll' => null,
|
||||
'QnA' => null,
|
||||
'SearchSub' => null,
|
||||
'StrictTransportSecurity' => null,
|
||||
'TagSub' => null,
|
||||
'TwitterBridge' => null,
|
||||
'FacebookBridge' => null
|
||||
),
|
||||
'discovery' =>
|
||||
array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user