]> git.mxchange.org Git - friendica.git/blob - mod/delegate.php
Merge develop into 3011_hcard_vcard
[friendica.git] / mod / delegate.php
1 <?php
2 require_once('mod/settings.php');
3
4 function delegate_init(&$a) {
5         return settings_init($a);
6 }
7
8
9 function delegate_content(&$a) {
10
11         if(! local_user()) {
12                 notice( t('Permission denied.') . EOL);
13                 return;
14         }
15
16         if($a->argc > 2 && $a->argv[1] === 'add' && intval($a->argv[2])) {
17
18                 // delegated admins can view but not change delegation permissions
19
20                 if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
21                         goaway($a->get_baseurl() . '/delegate');
22
23
24                 $id = $a->argv[2];
25
26                 $r = q("select `nickname` from user where uid = %d limit 1",
27                         intval($id)
28                 );
29                 if(count($r)) {
30                         $r = q("select id from contact where uid = %d and nurl = '%s' limit 1",
31                                 intval(local_user()),
32                                 dbesc(normalise_link($a->get_baseurl() . '/profile/' . $r[0]['nickname']))
33                         );
34                         if(count($r)) {
35                                 q("insert into manage ( uid, mid ) values ( %d , %d ) ",
36                                         intval($a->argv[2]),
37                                         intval(local_user())
38                                 );
39                         }
40                 }
41                 goaway($a->get_baseurl() . '/delegate');
42         }
43
44         if($a->argc > 2 && $a->argv[1] === 'remove' && intval($a->argv[2])) {
45
46                 // delegated admins can view but not change delegation permissions
47
48                 if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
49                         goaway($a->get_baseurl() . '/delegate');
50
51                 q("delete from manage where uid = %d and mid = %d limit 1",
52                         intval($a->argv[2]),
53                         intval(local_user())
54                 );
55                 goaway($a->get_baseurl() . '/delegate');
56
57         }
58
59         $full_managers = array();
60
61         // These people can manage this account/page with full privilege
62
63         $r = q("SELECT * FROM `user` WHERE `email` = '%s' AND `password` = '%s' ",
64                 dbesc($a->user['email']),
65                 dbesc($a->user['password'])
66         );
67         if(count($r))
68                 $full_managers = $r;
69
70         $delegates = array();
71
72         // find everybody that currently has delegated management to this account/page
73
74         $r = q("select * from user where uid in ( select uid from manage where mid = %d ) ",
75                 intval(local_user())
76         );
77
78         if(count($r))
79                 $delegates = $r;
80
81         $uids = array();
82
83         if(count($full_managers))
84                 foreach($full_managers as $rr)
85                         $uids[] = $rr['uid'];
86
87         if(count($delegates))
88                 foreach($delegates as $rr)
89                         $uids[] = $rr['uid'];
90
91         // find every contact who might be a candidate for delegation
92
93         $r = q("select nurl from contact where substring_index(contact.nurl,'/',3) = '%s' 
94                 and contact.uid = %d and contact.self = 0 and network = '%s' ",
95                 dbesc(normalise_link($a->get_baseurl())),
96                 intval(local_user()),
97                 dbesc(NETWORK_DFRN)
98         ); 
99
100         if(! count($r)) {
101                 notice( t('No potential page delegates located.') . EOL);
102                 return;
103         }
104
105         $nicknames = array();
106
107         if(count($r)) {
108                 foreach($r as $rr) {
109                         $nicknames[] = "'" . dbesc(basename($rr['nurl'])) . "'";
110                 }
111         }
112
113         $potentials = array();
114
115         $nicks = implode(',',$nicknames);
116
117         // get user records for all potential page delegates who are not already delegates or managers
118
119         $r = q("select `uid`, `username`, `nickname` from user where nickname in ( $nicks )");
120
121         if(count($r))
122                 foreach($r as $rr)
123                         if(! in_array($rr['uid'],$uids))
124                                 $potentials[] = $rr;
125
126         require_once("mod/settings.php");
127         settings_init($a);
128
129         $o = replace_macros(get_markup_template('delegate.tpl'),array(
130                 '$header' => t('Delegate Page Management'),
131                 '$base' => $a->get_baseurl(),
132                 '$desc' => t('Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely.'),
133                 '$head_managers' => t('Existing Page Managers'),
134                 '$managers' => $full_managers,
135                 '$head_delegates' => t('Existing Page Delegates'),
136                 '$delegates' => $delegates,
137                 '$head_potentials' => t('Potential Delegates'),
138                 '$potentials' => $potentials,
139                 '$remove' => t('Remove'),
140                 '$add' => t('Add'),
141                 '$none' => t('No entries.')
142         ));
143
144
145         return $o;
146
147
148 }