]> git.mxchange.org Git - friendica.git/blobdiff - mod/admin.php
Merge pull request #932 from annando/master
[friendica.git] / mod / admin.php
index c5b862ee59c472089b6ae9911976d8c7670ff511..7ddd17ebe7d7843fe57c68cb7a77bf16dee162d2 100644 (file)
@@ -108,7 +108,7 @@ function admin_content(&$a) {
 
        /* get plugins admin page */
 
-       $r = q("SELECT * FROM `addon` WHERE `plugin_admin`=1");
+       $r = q("SELECT name FROM `addon` WHERE `plugin_admin`=1");
        $aside['plugins_admin']=Array();
        foreach ($r as $h){
                $plugin =$h['name'];
@@ -237,6 +237,70 @@ function admin_page_site_post(&$a){
 
        check_form_security_token_redirectOnErr('/admin/site', 'admin_site');
 
+       // relocate
+       if (x($_POST,'relocate') && x($_POST,'relocate_url') && $_POST['relocate_url']!=""){
+               $new_url = $_POST['relocate_url'];
+               $new_url = rtrim($new_url,"/");
+               
+               $parsed = @parse_url($new_url);
+               if (!$parsed || (!x($parsed,'host') || !x($parsed,'scheme'))) {
+                       notice(t("Can not parse base url. Must have at least <scheme>://<domain>"));
+                       goaway($a->get_baseurl(true) . '/admin/site' );
+               }
+               
+               /* steps:
+                * replace all "baseurl" to "new_url" in config, profile, term, items and contacts
+                * send relocate for every local user
+                * */
+               
+               $old_url = $a->get_baseurl(true);
+               
+               function update_table($table_name, $fields, $old_url, $new_url) {
+                       global $db, $a;
+                       
+                       $dbold = dbesc($old_url);
+                       $dbnew = dbesc($new_url);
+                       
+                       $upd = array();
+                       foreach ($fields as $f) {
+                               $upd[] = "`$f` = REPLACE(`$f`, '$dbold', '$dbnew')";
+                       }
+                       
+                       $upds = implode(", ", $upd);
+                       
+                       
+                       
+                       $q = sprintf("UPDATE %s SET %s;", $table_name, $upds);
+                       $r = q($q);
+                       if (!$r) {
+                               notice( "Falied updating '$table_name': " . $db->error );
+                               goaway($a->get_baseurl(true) . '/admin/site' );
+                       }
+               }
+               
+               // update tables
+               update_table("profile", array('photo', 'thumb'), $old_url, $new_url);
+               update_table("term", array('url'), $old_url, $new_url);
+               update_table("contact", array('photo','thumb','micro','url','nurl','request','notify','poll','confirm','poco'), $old_url, $new_url);
+               update_table("item", array('owner-link','owner-avatar','author-name','author-link','author-avatar','body','plink','tag'), $old_url, $new_url);
+
+               // update config
+               $a->set_baseurl($new_url);
+               set_config('system','url',$new_url);
+               
+               // send relocate
+               $users = q("SELECT uid FROM user WHERE account_removed = 0 AND account_expired = 0");
+               
+               foreach ($users as $user) {
+                       proc_run('php', 'include/notifier.php', 'relocate', $user['uid']);
+               }
+
+               info("Relocation started. Could take a while to complete.");
+               
+               goaway($a->get_baseurl(true) . '/admin/site' );
+       }
+       // end relocate
+       
        $sitename               =       ((x($_POST,'sitename'))                 ? notags(trim($_POST['sitename']))              : '');
        $banner                 =       ((x($_POST,'banner'))                   ? trim($_POST['banner'])                        : false);
        $info                   =       ((x($_POST,'info'))                     ? trim($_POST['info'])                  : false);
@@ -264,6 +328,7 @@ function admin_page_site_post(&$a){
        $enotify_no_content             =       ((x($_POST,'enotify_no_content'))       ? True                                          : False);
        $private_addons                 =       ((x($_POST,'private_addons'))           ? True                                          : False);
        $disable_embedded               =       ((x($_POST,'disable_embedded'))         ? True                                          : False);
+       $allow_users_remote_self        =       ((x($_POST,'allow_users_remote_self'))          ? True                                          : False);
        
        $no_multi_reg           =       ((x($_POST,'no_multi_reg'))             ? True                                          : False);
        $no_openid              =       !((x($_POST,'no_openid'))               ? True                                          : False);
@@ -389,6 +454,7 @@ function admin_page_site_post(&$a){
        set_config('system','newuser_private', $newuser_private);
        set_config('system','enotify_no_content', $enotify_no_content);
        set_config('system','disable_embedded', $disable_embedded);
+       set_config('system','allow_users_remote_self', $allow_users_remote_self);
 
        set_config('system','block_extended_register', $no_multi_reg);
        set_config('system','no_openid', $no_openid);
@@ -460,11 +526,12 @@ function admin_page_site(&$a) {
 
         /* OStatus conversation poll choices */
         $ostatus_poll_choices = array(
-                "-1" => t("Never"),
-                "0" => t("Frequently"),
-                "60" => t("Hourly"),
-                "720" => t("Twice daily"),
-                "1440" => t("Daily")
+               "-2" => t("Never"),
+               "-1" => t("At post arrival"),
+               "0" => t("Frequently"),
+               "60" => t("Hourly"),
+               "720" => t("Twice daily"),
+               "1440" => t("Daily")
             );
 
         /* get user names to make the install a personal install of X */
@@ -502,13 +569,13 @@ function admin_page_site(&$a) {
        return replace_macros($t, array(
                '$title' => t('Administration'),
                '$page' => t('Site'),
-               '$submit' => t('Submit'),
+               '$submit' => t('Save Settings'),
                '$registration' => t('Registration'),
                '$upload' => t('File upload'),
                '$corporate' => t('Policies'),
                '$advanced' => t('Advanced'),
                '$performance' => t('Performance'),
-
+               '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'),
                '$baseurl' => $a->get_baseurl(true),
                // name, label, value, help string, extra data...
                '$sitename'             => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), 'UTF-8'),
@@ -539,7 +606,7 @@ function admin_page_site(&$a) {
                '$enotify_no_content'   => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.")),
                '$private_addons'       => array('private_addons', t("Disallow public access to addons listed in the apps menu."), get_config('config','private_addons'), t("Checking this box will restrict addons listed in the apps menu to members only.")),
                '$disable_embedded'     => array('disable_embedded', t("Don't embed private images in posts"), get_config('system','disable_embedded'), t("Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while.")),
-
+               '$allow_users_remote_self'      => array('allow_users_remote_self', t('Allow Users to set remote_self'), get_config('system','allow_users_remote_self'), t('With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream.')),
                '$no_multi_reg'         => array('no_multi_reg', t("Block multiple registrations"),  get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")),
                '$no_openid'            => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),
                '$no_regfullname'       => array('no_regfullname', t("Fullname check"), !get_config('system','no_regfullname'), t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")),
@@ -564,6 +631,9 @@ function admin_page_site(&$a) {
                '$lockpath'             => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), "The lock file is used to avoid multiple pollers at one time. Only define a folder here."),
                '$temppath'             => array('temppath', t("Temp path"), get_config('system','temppath'), "If you have a restricted system where the webserver can't access the system temp path, enter another path here."),
                '$basepath'             => array('basepath', t("Base path to installation"), get_config('system','basepath'), "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."),
+               
+               '$relocate_url'     => array('relocate_url', t("New base url"), $a->get_baseurl(), "Change base url for this server. Sends relocate message to all DFRN contacts of all users."),
+               
         '$form_security_token' => get_form_security_token("admin_site"),
 
        ));
@@ -605,7 +675,7 @@ function admin_page_dbsync(&$a) {
        }
 
        $failed = array();
-       $r = q("select * from config where `cat` = 'database' ");
+       $r = q("select k, v from config where `cat` = 'database' ");
        if(count($r)) {
                foreach($r as $rr) {
                        $upd = intval(substr($rr['k'],7));
@@ -711,7 +781,7 @@ function admin_page_users_post(&$a){
 function admin_page_users(&$a){
        if ($a->argc>2) {
                $uid = $a->argv[3];
-               $user = q("SELECT * FROM `user` WHERE `uid`=%d", intval($uid));
+               $user = q("SELECT username, blocked FROM `user` WHERE `uid`=%d", intval($uid));
                if (count($user)==0){
                        notice( 'User not found' . EOL);
                        goaway($a->get_baseurl(true) . '/admin/users' );
@@ -827,7 +897,7 @@ function admin_page_users(&$a){
                // strings //
                '$title' => t('Administration'),
                '$page' => t('Users'),
-               '$submit' => t('Submit'),
+               '$submit' => t('Add User'),
                '$select_all' => t('select all'),
                '$h_pending' => t('User registrations waiting for confirm'),
                '$h_deleted' => t('User waiting for permanent deletion'),
@@ -973,7 +1043,7 @@ function admin_page_plugins(&$a){
        return replace_macros($t, array(
                '$title' => t('Administration'),
                '$page' => t('Plugins'),
-               '$submit' => t('Submit'),
+               '$submit' => t('Save Settings'),
                '$baseurl' => $a->get_baseurl(true),
                '$function' => 'plugins',       
                '$plugins' => $plugins,
@@ -1173,7 +1243,7 @@ function admin_page_themes(&$a){
        return replace_macros($t, array(
                '$title' => t('Administration'),
                '$page' => t('Themes'),
-               '$submit' => t('Submit'),
+               '$submit' => t('Save Settings'),
                '$baseurl' => $a->get_baseurl(true),
                '$function' => 'themes',
                '$plugins' => $xthemes,
@@ -1260,7 +1330,7 @@ readable.");
        return replace_macros($t, array(
                '$title' => t('Administration'),
                '$page' => t('Logs'),
-               '$submit' => t('Submit'),
+               '$submit' => t('Save Settings'),
                '$clear' => t('Clear'),
                '$data' => $data,
                '$baseurl' => $a->get_baseurl(true),