]> git.mxchange.org Git - friendica.git/blob - mod/crepair.php
223c7c60e22690a2706d0118927c4ce2d46c6729
[friendica.git] / mod / crepair.php
1 <?php
2
3 function crepair_init(&$a) {
4         if(! local_user())
5                 return;
6
7         $contact_id = 0;
8
9         if(($a->argc == 2) && intval($a->argv[1])) {
10                 $contact_id = intval($a->argv[1]);
11                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
12                         intval(local_user()),
13                         intval($contact_id)
14                 );
15                 if(! count($r)) {
16                         $contact_id = 0;
17                 }
18         }
19
20         if(! x($a->page,'aside'))
21                 $a->page['aside'] = '';
22
23         if($contact_id) {
24                         $a->data['contact'] = $r[0];
25                         $o .= '<div class="vcard">';
26                         $o .= '<div class="fn">' . $a->data['contact']['name'] . '</div>';
27                         $o .= '<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="' . $a->data['contact']['photo'] . '" alt="' . $a->data['contact']['name'] . '" /></div>';
28                         $o .= '</div>';
29                         $a->page['aside'] .= $o;
30
31         }
32 }
33
34
35 function crepair_post(&$a) {
36         if(! local_user())
37                 return;
38
39         $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
40
41         if($cid) {
42                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
43                         intval($cid),
44                         intval(local_user())
45                 );
46         }
47
48         if(! count($r))
49                 return;
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
64         $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s' , `remote_self` = %d
65                 WHERE `id` = %d AND `uid` = %d LIMIT 1",
66                 dbesc($name),
67                 dbesc($nick),
68                 dbesc($url),
69                 dbesc($request),
70                 dbesc($confirm),
71                 dbesc($notify),
72                 dbesc($poll),
73                 dbesc($attag),
74                 intval($remote_self),
75                 intval($contact['id']),
76                 local_user()
77         );
78
79         if($photo) {
80                 logger('mod-crepair: updating photo from ' . $photo);
81                 require_once("include/Photo.php");
82
83                 $photos = import_profile_photo($photo,local_user(),$contact['id']);
84
85                 $x = q("UPDATE `contact` SET `photo` = '%s',
86                         `thumb` = '%s',
87                         `micro` = '%s',
88                         `name-date` = '%s',
89                         `uri-date` = '%s',
90                         `avatar-date` = '%s'
91                         WHERE `id` = %d LIMIT 1
92                         ",
93                         dbesc($photos[0]),
94                         dbesc($photos[1]),
95                         dbesc($photos[2]),
96                         dbesc(datetime_convert()),
97                         dbesc(datetime_convert()),
98                         dbesc(datetime_convert()),
99                         intval($contact['id'])
100                 );
101         }
102
103         if($r)
104                 info( t('Contact settings applied.') . EOL);
105         else
106                 notice( t('Contact update failed.') . EOL);
107
108
109         return;
110 }
111
112
113
114 function crepair_content(&$a) {
115
116         if(! local_user()) {
117                 notice( t('Permission denied.') . EOL);
118                 return;
119         }
120
121         $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
122
123         if($cid) {
124                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
125                         intval($cid),
126                         intval(local_user())
127                 );
128         }
129
130         if(! count($r)) {
131                 notice( t('Contact not found.') . EOL);
132                 return;
133         }
134
135         $contact = $r[0];
136
137         $msg1 = t('Repair Contact Settings');
138
139         $msg2 = t('<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working.');
140         $msg3 = t('Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.');
141
142         $o .= '<h2>' . $msg1 . '</h2>';
143
144         $o .= '<div class="error-message">' . $msg2 . EOL . EOL. $msg3 . '</div>';
145
146         $o .= EOL . '<a href="contacts/' . $cid . '">' . t('Return to contact editor') . '</a>' . EOL;
147
148         $tpl = get_markup_template('crepair.tpl');
149         $o .= replace_macros($tpl, array(
150                 '$label_name' => t('Name'),
151                 '$label_nick' => t('Account Nickname'),
152                 '$label_attag' => t('@Tagname - overrides Name/Nickname'),
153                 '$label_url' => t('Account URL'),
154                 '$label_request' => t('Friend Request URL'),
155                 '$label_confirm' => t('Friend Confirm URL'),
156                 '$label_notify' => t('Notification Endpoint URL'),
157                 '$label_poll' => t('Poll/Feed URL'),
158                 '$label_photo' => t('New photo from this URL'),
159                 '$label_remote_self' => t('Remote Self'),
160                 '$allow_remote_self' => get_config('system','allow_users_remote_self'),
161                 '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.')),  
162                 '$contact_name' => $contact['name'],
163                 '$contact_nick' => $contact['nick'],
164                 '$contact_id'   => $contact['id'],
165                 '$contact_url'  => $contact['url'],
166                 '$request'      => $contact['request'],
167                 '$confirm'      => $contact['confirm'],
168                 '$notify'       => $contact['notify'],
169                 '$poll'         => $contact['poll'],
170                 '$contact_attag'  => $contact['attag'],
171                 '$lbl_submit'   => t('Submit')
172             ));
173
174         return $o;
175
176 }