]> git.mxchange.org Git - friendica.git/blob - mod/admin.php
70720f5d880071052e2705dc78032eafcd7aa62e
[friendica.git] / mod / admin.php
1 <?php
2  /**
3   * Friendika admin
4   */
5   
6  
7 function admin_init(&$a) {
8         if(!is_site_admin()) {
9                 notice( t('Permission denied.') . EOL);
10                 return;
11         }
12 }
13
14 function admin_post(&$a){
15         if(!is_site_admin()) {
16                 return login(false);
17         }
18         
19         // urls
20         if ($a->argc > 1){
21                 switch ($a->argv[1]){
22                         case 'site': {
23                                 admin_page_site_post($a);
24                                 break;
25                         }
26                 }
27         }
28
29         goaway($a->get_baseurl() . '/admin' );
30         return; // NOTREACHED   
31 }
32
33 function admin_content(&$a) {
34
35         if(!is_site_admin()) {
36                 return login(false);
37         }
38
39         /**
40          * Side bar links
41          */
42
43         // array( url, name, extra css classes )
44         $aside = Array(
45                 'site'   =>     Array($a->get_baseurl()."/admin/site/", t("Site") , "site"),
46                 'users'  =>     Array($a->get_baseurl()."/admin/users/", t("Users") , "users"),
47                 'plugins'=>     Array($a->get_baseurl()."/admin/plugins/", t("Plugins") , "plugins")
48         );
49         
50         /* get plugins admin page */
51         
52         $r = q("SELECT * FROM `hook` WHERE `hook`='plugin_admin'");
53         $aside['plugins_admin']=Array();
54         foreach ($r as $h){
55                 $plugin = explode("/",$h['file']); $plugin = $plugin[1];
56                 $aside['plugins_admin'][] = Array($a->get_baseurl()."/admin/plugins/".$plugin, $plugin, "plugin");
57         }
58                 
59         $aside['logs'] = Array($a->get_baseurl()."/admin/logs/", t("Logs"), "logs");
60
61         $t = get_markup_template("admin_aside.tpl");
62         $a->page['aside'] = replace_macros( $t, array(
63                         '$admin' => $aside, 
64                         '$admurl'=> $a->get_baseurl()."/admin/"
65         ));
66
67
68
69         /**
70          * Page content
71          */
72         $o = '';
73         
74         // urls
75         if ($a->argc > 1){
76                 switch ($a->argv[1]){
77                         case 'site': {
78                                 $o = admin_page_site($a);
79                                 break;
80                         }
81                         default:
82                                 notice( t("Item not found.") );
83                 }
84         } else {
85                 $o = admin_page_summary($a);
86         }
87         return $o;
88
89
90
91 /**
92  * Admin Summary Page
93  */
94 function admin_page_summary(&$a) {
95         $r = q("SELECT `page-flags`, COUNT(uid) as `count` FROM `user` GROUP BY `page-flags`");
96         $accounts = Array(
97                 Array( t('Normal Account'), 0),
98                 Array( t('Soapbox Account'), 0),
99                 Array( t('Community/Celebrity Account'), 0),
100                 Array( t('Automatic Friend Account'), 0)
101         );
102         $users=0;
103         foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+=$u['count']; }
104
105         
106         $r = q("SELECT COUNT(id) as `count` FROM `register`");
107         $pending = $r[0]['count'];
108         
109         
110         
111         
112         
113         $t = get_markup_template("admin_summary.tpl");
114         return replace_macros($t, array(
115                 '$title' => t('Administration'),
116                 '$page' => t('Summary'),
117                 '$users' => Array( t('Registered users'), $users),
118                 '$accounts' => $accounts,
119                 '$pending' => Array( t('Pending registrations'), $pending),
120                 '$version' => Array( t('Version'), FRIENDIKA_VERSION),
121                 '$build' =>  get_config('system','build'),
122                 '$plugins' => Array( t('Active plugins'), $a->plugins )
123         ));
124 }
125
126
127 /**
128  * Admin Site Page
129  */
130 function admin_page_site_post(&$a){
131         if (!x($_POST,"page_site")){
132                 return;
133         }
134
135         
136         $sitename                       =       ((x($_POST,'sitename'))                 ? notags(trim($_POST['sitename']))                      : '');
137         $banner                         =       ((x($_POST,'banner'))                   ? trim($_POST['banner'])                                        : false);
138         $language                       =       ((x($_POST,'language'))                 ? notags(trim($_POST['language']))                      : '');
139         $theme                          =       ((x($_POST,'theme'))                    ? notags(trim($_POST['theme']))                         : '');
140         $maximagesize           =       ((x($_POST,'maximagesize'))             ? intval(trim($_POST['maximagesize']))          :  0);
141         $allowed_sites          =       ((x($_POST,'allowed_sites'))    ? notags(trim($_POST['allowed_sites']))         : '');
142         $allowed_email          =       ((x($_POST,'allowed_email'))    ? notags(trim($_POST['allowed_email']))         : '');
143         $block_public           =       ((x($_POST,'block_public'))             ? True  :       False);
144         $force_publish          =       ((x($_POST,'publish_all'))              ? True  :       False);
145         $global_directory       =       ((x($_POST,'directory_submit_url'))     ? notags(trim($_POST['directory_submit_url']))  : '');
146         $global_search_url      =       ((x($_POST,'directory_search_url'))? notags(trim($_POST['directory_search_url']))       : '');
147         $no_multi_reg           =       ((x($_POST,'no_multi_reg'))             ? True  :       False);
148         $no_openid                      =       ((x($_POST,'no_openid'))                ? True  :       False);
149         $no_gravatar            =       ((x($_POST,'no_gravatar'))              ? True  :       False);
150         $no_regfullname         =       ((x($_POST,'no_regfullname'))   ? True  :       False);
151         $no_utf                         =       ((x($_POST,'no_utf'))                   ? True  :       False);
152         $rino_enc                       =       ((x($_POST,'rino_enc'))                 ? True  :       False);
153         $verifyssl                      =       ((x($_POST,'verifyssl'))                ? True  :       False);
154         $proxyuser                      =       ((x($_POST,'proxyuser'))                ? notags(trim($_POST['global_search_url']))     : '');
155         $proxy                          =       ((x($_POST,'proxy'))                    ? notags(trim($_POST['global_search_url']))     : '');
156         $timeout                        =       ((x($_POST,'timeout'))                  ? intval(trim($_POST['maximagesize']))          : 60);
157
158
159         $a->config['sitename'] = $sitename;
160         if ($banner==""){
161                 // don't know why, but del_config doesn't work...
162                 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
163                         dbesc("system"),
164                         dbesc("banner")
165                 );
166         } else {
167                 set_config('system','banner', $banner);
168         }
169         set_config('system','language', $language);
170         set_config('system','theme', $theme);
171         set_config('system','maximagesize', $maximagesize);
172         set_config('system','allowed_sites', $allowed_sites);
173         set_config('system','allowed_email', $allowed_email);
174         set_config('system','block_public', $block_public);
175         set_config('system','publish_all', $force_publish);
176         if ($global_directory==""){
177                 // don't know why, but del_config doesn't work...
178                 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
179                         dbesc("system"),
180                         dbesc("directory_submit_url")
181                 );
182         } else {
183                 set_config('system','directory_submit_url', $global_directory);
184         }
185         set_config('system','directory_search_url', $global_search_url);
186         set_config('system','block_extended_register', $no_multi_reg);
187         set_config('system','no_openid', $no_openid);
188         set_config('system','no_gravatar', $no_gravatar);
189         set_config('system','no_regfullname', $no_regfullname);
190         set_config('system','proxy', $no_utf);
191         set_config('system','rino_encrypt', $rino_enc);
192         set_config('system','verifyssl', $verifyssl);
193         set_config('system','proxyuser', $proxyuser);
194         set_config('system','proxy', $proxy);
195         set_config('system','curl_timeout', $timeout);
196
197         $r = q("SELECT * FROM `config` WHERE `cat`='config' AND `k`='sitename'");
198         if (count($r)>0){
199                 q("UPDATE `config` SET `v`='%s' WHERE `cat`='config' AND `k`='sitename'",
200                         dbesc($a->config['sitename'])
201                 );
202         } else {
203                 q("INSERT INTO `config`  ( `cat`, `k`, `v` ) VALUES ( 'config', 'sitename', '%s' )",
204                         dbesc($a->config['sitename'])
205                 );
206         }
207         
208
209
210         goaway($a->get_baseurl() . '/admin/site' );
211         return; // NOTREACHED   
212         
213 }
214  
215 function admin_page_site(&$a) {
216         
217         /* Installed langs */
218         $lang_choices = array();
219         $langs = glob('view/*/strings.php');
220         
221         if(is_array($langs) && count($langs)) {
222                 if(! in_array('view/en/strings.php',$langs))
223                         $langs[] = 'view/en/';
224                 asort($langs);
225                 foreach($langs as $l) {
226                         $t = explode("/",$l);
227                         $lang_choices[$t[1]] = $t[1];
228                 }
229         }
230         
231         /* Installed themes */
232         $theme_choices = array();
233         $files = glob('view/theme/*');
234         if($files) {
235                 foreach($files as $file) {
236                         $f = basename($file);
237                         $theme_name = ((file_exists($file . '/experimental')) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
238                         $theme_choices[$f] = $theme_name;
239                 }
240         }
241         
242         
243         /* Banner */
244         $banner = get_config('system','banner');
245         if($banner == false) 
246                 $banner = htmlspecialchars('<a href="http://project.friendika.com"><img id="logo-img" src="images/friendika-32.png" alt="logo" /></a><span id="logo-text"><a href="http://project.friendika.com">Friendika</a></span>');
247         
248         //echo "<pre>"; var_dump($lang_choices); die("</pre>");
249
250
251         
252         $t = get_markup_template("admin_site.tpl");
253         return replace_macros($t, array(
254                 '$title' => t('Administration'),
255                 '$page' => t('Site'),
256                 '$submit' => t('Submit'),
257                 '$baseurl' => $a->get_baseurl(),
258                                                 
259                                                                         // name, label, value, help string, extra data...
260                 '$sitename'             => array('sitename', t("Site name"), $a->config['sitename'], ""),
261                 '$banner'                       => array('banner', t("Banner/Logo"), $banner, ""),
262                 '$language'             => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
263                 '$theme'                        => array('theme', t("System theme"), get_config('system','theme'), "Default system theme (which may be over-ridden by user profiles)", $theme_choices),
264
265                 '$maximagesize'         => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), "Maximum size in bytes of uploaded images. Default is 0, which means no limits."),
266
267                 '$allowed_sites'        => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"),
268                 '$allowed_email'        => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"),
269                 '$block_public'         => array('block_public', t("Block public"), get_config('system','block_public'), "Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."),
270                 '$force_publish'        => array('publish_all', t("Force publish"), get_config('system','publish_all'), "Check to force all profiles on this site to be listed in the site directory."),
271                 '$global_directory'     => array('directory_submit_url', t("Global directory update URL"), get_config('system','directory_submit_url'), "URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."),
272                 '$global_search_url'=> array('directory_search_url', t("Global directory search URL"), get_config('system','directory_search_url'), ""),
273                         
274                         
275                 '$no_multi_reg'         => array('no_multi_reg', t("Block multiple registrations"),  get_config('system','block_extended_register'), "Disallow users to register additional accounts for use as pages."),
276                 '$no_openid'            => array('no_openid', t("No OpenID support"), get_config('system','no_openid'), "Disable OpenID support for registration and logins."),
277                 '$no_gravatar'          => array('no_gravatar', t("No Gravatar support"), get_config('system','no_gravatar'), ""),
278                 '$no_regfullname'       => array('no_regfullname', t("No fullname check"), get_config('system','no_regfullname'), "If unchecked, force users to registrate with a space between his firsname and lastname in Full name, as an antispam measure"),
279                 '$no_utf'                       => array('no_utf', t("No UTF-8 Regular expressions"), get_config('system','proxy'), "Default is false (meaning UTF8 regular expressions are supported and working)"),
280                         
281                 '$rino_enc'                     => array('rino_enc', t("Enable Rino encrypt"), get_config('system','rino_encrypt'),""),
282                 '$verifyssl'            => array('verifyssl', t("Verify SSL"), get_config('system','verifyssl'), "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."),
283                 '$proxyuser'            => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""),
284                 '$proxy'                        => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""),
285                 '$timeout'                      => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), "Value is in seconds. Set to 0 for unlimited (not recommended)."),
286
287                         
288         ));
289
290 }