]> git.mxchange.org Git - friendica.git/blob - mod/crepair.php
Remove requires
[friendica.git] / mod / crepair.php
1 <?php
2
3 /**
4  * @file mod/crepair.php
5  */
6 use Friendica\App;
7 use Friendica\Core\Config;
8 use Friendica\Database\DBM;
9 use Friendica\Model\Contact;
10
11 require_once 'mod/contacts.php';
12
13 function crepair_init(App $a)
14 {
15         if (!local_user()) {
16                 return;
17         }
18
19         $contact_id = 0;
20
21         if (($a->argc == 2) && intval($a->argv[1])) {
22                 $contact_id = intval($a->argv[1]);
23                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
24                         intval(local_user()),
25                         intval($contact_id)
26                 );
27                 if (!DBM::is_result($r)) {
28                         $contact_id = 0;
29                 }
30         }
31
32         if (!x($a->page, 'aside')) {
33                 $a->page['aside'] = '';
34         }
35
36         if ($contact_id) {
37                 $a->data['contact'] = $r[0];
38                 $contact = $r[0];
39                 profile_load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
40         }
41 }
42
43 function crepair_post(App $a)
44 {
45         if (!local_user()) {
46                 return;
47         }
48
49         $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
50
51         if ($cid) {
52                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
53                         intval($cid),
54                         intval(local_user())
55                 );
56         }
57
58         if (!DBM::is_result($r)) {
59                 return;
60         }
61
62         $contact = $r[0];
63
64         $name        = defaults($_POST, 'name'       , $contact['name']);
65         $nick        = defaults($_POST, 'nick'       , '');
66         $url         = defaults($_POST, 'url'        , '');
67         $request     = defaults($_POST, 'request'    , '');
68         $confirm     = defaults($_POST, 'confirm'    , '');
69         $notify      = defaults($_POST, 'notify'     , '');
70         $poll        = defaults($_POST, 'poll'       , '');
71         $attag       = defaults($_POST, 'attag'      , '');
72         $photo       = defaults($_POST, 'photo'      , '');
73         $remote_self = defaults($_POST, 'remote_self', false);
74         $nurl        = normalise_link($url);
75
76         $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `nurl` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s' , `remote_self` = %d
77                 WHERE `id` = %d AND `uid` = %d",
78                 dbesc($name),
79                 dbesc($nick),
80                 dbesc($url),
81                 dbesc($nurl),
82                 dbesc($request),
83                 dbesc($confirm),
84                 dbesc($notify),
85                 dbesc($poll),
86                 dbesc($attag),
87                 intval($remote_self),
88                 intval($contact['id']),
89                 local_user()
90         );
91
92         if ($photo) {
93                 logger('mod-crepair: updating photo from ' . $photo);
94
95                 Contact::updateAvatar($photo, local_user(), $contact['id']);
96         }
97
98         if ($r) {
99                 info(t('Contact settings applied.') . EOL);
100         } else {
101                 notice(t('Contact update failed.') . EOL);
102         }
103
104         return;
105 }
106
107 function crepair_content(App $a)
108 {
109         if (!local_user()) {
110                 notice(t('Permission denied.') . EOL);
111                 return;
112         }
113
114         $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
115
116         if ($cid) {
117                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
118                         intval($cid),
119                         intval(local_user())
120                 );
121         }
122
123         if (!DBM::is_result($r)) {
124                 notice(t('Contact not found.') . EOL);
125                 return;
126         }
127
128         $contact = $r[0];
129
130         $warning = t('<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working.');
131         $info = t('Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.');
132
133         $returnaddr = "contacts/$cid";
134
135         $allow_remote_self = Config::get('system', 'allow_users_remote_self');
136
137         // Disable remote self for everything except feeds.
138         // There is an issue when you repeat an item from maybe twitter and you got comments from friendica and twitter
139         // Problem is, you couldn't reply to both networks.
140         if (!in_array($contact['network'], array(NETWORK_FEED, NETWORK_DFRN, NETWORK_DIASPORA))) {
141                 $allow_remote_self = false;
142         }
143
144         if ($contact['network'] == NETWORK_FEED) {
145                 $remote_self_options = array('0' => t('No mirroring'), '1' => t('Mirror as forwarded posting'), '2' => t('Mirror as my own posting'));
146         } else {
147                 $remote_self_options = array('0' => t('No mirroring'), '2' => t('Mirror as my own posting'));
148         }
149
150         $update_profile = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS));
151
152         $tab_str = contacts_tab($a, $contact['id'], 5);
153
154         $tpl = get_markup_template('crepair.tpl');
155         $o = replace_macros($tpl, array(
156                 '$tab_str'        => $tab_str,
157                 '$warning'        => $warning,
158                 '$info'           => $info,
159                 '$returnaddr'     => $returnaddr,
160                 '$return'         => t('Return to contact editor'),
161                 '$update_profile' => $update_profile,
162                 '$udprofilenow'   => t('Refetch contact data'),
163                 '$contact_id'     => $contact['id'],
164                 '$lbl_submit'     => t('Submit'),
165                 '$label_remote_self' => t('Remote Self'),
166                 '$allow_remote_self' => $allow_remote_self,
167                 '$remote_self' => array('remote_self',
168                         t('Mirror postings from this contact'),
169                         $contact['remote_self'],
170                         t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'),
171                         $remote_self_options
172                 ),
173
174                 '$name'         => array('name', t('Name') , htmlentities($contact['name'])),
175                 '$nick'         => array('nick', t('Account Nickname'), htmlentities($contact['nick'])),
176                 '$attag'        => array('attag', t('@Tagname - overrides Name/Nickname'), $contact['attag']),
177                 '$url'          => array('url', t('Account URL'), $contact['url']),
178                 '$request'      => array('request', t('Friend Request URL'), $contact['request']),
179                 'confirm'       => array('confirm', t('Friend Confirm URL'), $contact['confirm']),
180                 'notify'        => array('notify', t('Notification Endpoint URL'), $contact['notify']),
181                 'poll'          => array('poll', t('Poll/Feed URL'), $contact['poll']),
182                 'photo'         => array('photo', t('New photo from this URL'), ''),
183         ));
184
185         return $o;
186 }