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