2 require_once("include/contact_selectors.php");
3 require_once("mod/contacts.php");
5 function crepair_init(App $a) {
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",
18 if (! dbm::is_result($r)) {
23 if(! x($a->page,'aside'))
24 $a->page['aside'] = '';
27 $a->data['contact'] = $r[0];
29 profile_load($a, "", 0, get_contact_details_by_url($contact["url"]));
33 function crepair_post(App $a) {
38 $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
41 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
47 if (! dbm::is_result($r)) {
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);
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",
77 intval($contact['id']),
82 logger('mod-crepair: updating photo from ' . $photo);
83 require_once("include/Photo.php");
85 update_contact_avatar($photo,local_user(),$contact['id']);
89 info( t('Contact settings applied.') . EOL);
91 notice( t('Contact update failed.') . EOL);
99 function crepair_content(App $a) {
101 if (! local_user()) {
102 notice( t('Permission denied.') . EOL);
106 $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
109 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
115 if (! dbm::is_result($r)) {
116 notice( t('Contact not found.') . EOL);
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.');
125 $returnaddr = "contacts/$cid";
127 $allow_remote_self = get_config('system','allow_users_remote_self');
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;
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'));
138 $remote_self_options = array('0'=>t('No mirroring'), '2'=>t('Mirror as my own posting'));
140 $update_profile = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DSPR, NETWORK_OSTATUS));
142 $tab_str = contacts_tab($a, $contact['id'], 5);
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,
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'),
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.'),
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'), ''),