3 * StatusNet, the distributed open-source microblogging tool
5 * A site profile is a set of default settings for a particular style of
6 * StatusNet site: public, private, community, etc.
10 * LICENCE: This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 * @category Installation
25 * @author Zach Copley <zach@status.net>
26 * @copyright 2011 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
36 * Helper class for getting the settings for a particular site profile
41 * Returns the config settings for a site profile by name
43 * @param string $name name of a site profile
44 * @return array config settings
46 static public function getSettings($name)
48 $sprofileClass = ucfirst($name) . "Site";
50 if (class_exists($sprofileClass)) {
51 return call_user_func(array($sprofileClass, 'getSettings'));
55 "Unknown site profile '{$name}' specified in config file.",
64 * Site profile settings contain the list of the default settings (and
65 * possibly other information for a particular flavor of StatusNet
66 * installation). These will overwrite base defaults in $config global.
68 * @category Installation
70 * @author Zach Copley <zach@status.net>
71 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
72 * @link http://status.net/
74 abstract class SiteProfileSettings
76 abstract static function getSettings();
80 * Settings for a 'public' site
82 class PublicSite extends SiteProfileSettings
85 * Get the settings for this site profile
87 * @return type array an array of settings
89 static function getSettings() {
92 // We only want to change these values, not replace entire 'site' array
93 'site' => array_replace(
94 $config['site'], array(
95 'inviteonly' => false,
104 'ClientSideShorten' => null,
107 'ExtendedProfile' => null,
115 'StrictTransportSecurity' => null,
119 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
125 * Settings for a 'private' site
127 * // XXX Too business oriented?
129 class PrivateSite extends SiteProfileSettings
132 * Get the settings for this site profile
134 * @return type array an array of settings
136 static function getSettings() {
139 // We only want to change these values, not replace entire 'site' array
140 'site' => array_replace(
141 $config['site'], array(
142 'inviteonly' => true,
150 'ClientSideShorten' => null,
153 'ExtendedProfile' => null,
154 'EmailRegistration' => null,
158 'MobileProfile' => null,
163 'StrictTransportSecurity' => null,
167 'profile' => array('delete' => 'true'),
168 'license' => array('type' => 'private'),
169 'attachments' => array(
170 // Only allow uploads of pictures and MS Office files
171 'supported' => array(
177 'application/msword',
178 'application/vnd.ms-office',
179 'application/vnd.ms-excel',
180 'application/vnd.ms-powerpoint',
184 'discovery' => array('cors' => false) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
190 * Settings for a 'community' site
192 class CommunitySite extends SiteProfileSettings
195 * Get the settings for this site profile
197 * @return type array an array of settings
199 static function getSettings() {
202 // We only want to change these values, not replace entire 'site' array
203 'site' => array_replace(
204 $config['site'], array(
213 'ClientSideShorten' => null,
223 'StrictTransportSecurity' => null,
227 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
234 * Settings for a 'singleuser' site
236 class SingleuserSite extends SiteProfileSettings
239 * Get the settings for this site profile
241 * @return type array an array of settings
243 static function getSettings() {
246 'singleuser' => array('enabled' => true),
247 // We only want to change these values, not replace entire 'site' array
248 'site' => array_replace(
249 $config['site'], array(
258 'ClientSideShorten' => null,
262 'MobileProfile' => null,
268 'StrictTransportSecurity' => null,
270 'TwitterBridge' => null,
271 'FacebookBridge' => null,
274 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)