]> git.mxchange.org Git - friendica.git/blob - mod/videos.php
fix account_type
[friendica.git] / mod / videos.php
1 <?php
2 require_once('include/items.php');
3 require_once('include/acl_selectors.php');
4 require_once('include/bbcode.php');
5 require_once('include/security.php');
6 require_once('include/redir.php');
7
8
9 function videos_init(&$a) {
10
11         if($a->argc > 1)
12                 auto_redir($a, $a->argv[1]);
13
14         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
15                 return;
16         }
17
18         nav_set_selected('home');
19
20         $o = '';
21
22         if($a->argc > 1) {
23                 $nick = $a->argv[1];
24                 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
25                         dbesc($nick)
26                 );
27
28                 if(! count($user))
29                         return;
30
31                 $a->data['user'] = $user[0];
32                 $a->profile_uid = $user[0]['uid'];
33
34                 $profile = get_profiledata_by_nick($nick, $a->profile_uid);
35
36                 if((intval($profile['page-flags']) == PAGE_COMMUNITY) || (intval($profile['page-flags']) == PAGE_PRVGROUP))
37                         $account_type = t('Forum');
38                 else
39                         $account_type = "";
40
41                 $tpl = get_markup_template("vcard-widget.tpl");
42
43                 $vcard_widget .= replace_macros($tpl, array(
44                         '$name' => $profile['name'],
45                         '$photo' => $profile['photo'],
46                         '$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""),
47                         '$account_type' => $account_type,
48                         '$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""),
49                 ));
50
51
52                 /*$sql_extra = permissions_sql($a->data['user']['uid']);
53
54                 $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc",
55                         intval($a->data['user']['uid'])
56                 );
57
58                 if(count($albums)) {
59                         $a->data['albums'] = $albums;
60
61                         $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);
62
63                         if($albums_visible) {
64                                 $o .= '<div id="sidebar-photos-albums" class="widget">';
65                                 $o .= '<h3>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h3>';
66
67                                 $o .= '<ul>';
68                                 foreach($albums as $album) {
69
70                                         // don't show contact photos. We once translated this name, but then you could still access it under
71                                         // a different language setting. Now we store the name in English and check in English (and translated for legacy albums).
72
73                                         if((! strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos')))
74                                                 continue;
75                                         $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
76                                 }
77                                 $o .= '</ul>';
78                         }
79                         if(local_user() && $a->data['user']['uid'] == local_user()) {
80                                 $o .= '<div id="photo-albums-upload-link"><a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload" >' .t('Upload New Photos') . '</a></div>';
81                         }
82
83                         $o .= '</div>';
84                 }*/
85
86                 if(! x($a->page,'aside'))
87                         $a->page['aside'] = '';
88                 $a->page['aside'] .= $vcard_widget;
89
90
91                 $tpl = get_markup_template("videos_head.tpl");
92                 $a->page['htmlhead'] .= replace_macros($tpl,array(
93                         '$baseurl' => $a->get_baseurl(),
94                 ));
95
96                 $tpl = get_markup_template("videos_end.tpl");
97                 $a->page['end'] .= replace_macros($tpl,array(
98                         '$baseurl' => $a->get_baseurl(),
99                 ));
100
101         }
102
103         return;
104 }
105
106
107
108 function videos_post(&$a) {
109
110         $owner_uid = $a->data['user']['uid'];
111
112         if (local_user() != $owner_uid) goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
113
114         if(($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
115
116                 // Check if we should do HTML-based delete confirmation
117                 if(!x($_REQUEST,'confirm')) {
118                         if(x($_REQUEST,'canceled')) goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
119
120                         $drop_url = $a->query_string;
121                         $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
122                                 '$method' => 'post',
123                                 '$message' => t('Do you really want to delete this video?'),
124                                 '$extra_inputs' => array(
125                                         array('name'=>'id', 'value'=> $_POST['id']),
126                                         array('name'=>'delete', 'value'=>'x')
127                                 ),
128                                 '$confirm' => t('Delete Video'),
129                                 '$confirm_url' => $drop_url,
130                                 '$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
131                                 '$cancel' => t('Cancel'),
132
133                         ));
134                         $a->error = 1; // Set $a->error so the other module functions don't execute
135                         return;
136                 }
137
138                 $video_id = $_POST['id'];
139
140
141                 $r = q("SELECT `id`  FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
142                         intval(local_user()),
143                         dbesc($video_id)
144                 );
145
146                 if(count($r)) {
147                         q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
148                                 intval(local_user()),
149                                 dbesc($video_id)
150                         );
151                         $i = q("SELECT * FROM `item` WHERE `attach` like '%%attach/%s%%' AND `uid` = %d LIMIT 1",
152                                 dbesc($video_id),
153                                 intval(local_user())
154                         );
155                         #echo "<pre>"; var_dump($i); killme();
156                         if(count($i)) {
157                                 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
158                                         dbesc(datetime_convert()),
159                                         dbesc(datetime_convert()),
160                                         dbesc($i[0]['uri']),
161                                         intval(local_user())
162                                 );
163                                 create_tags_from_itemuri($i[0]['uri'], local_user());
164                                 delete_thread_uri($i[0]['uri'], local_user());
165
166                                 $url = $a->get_baseurl();
167                                 $drop_id = intval($i[0]['id']);
168
169                                 if($i[0]['visible'])
170                                         proc_run('php',"include/notifier.php","drop","$drop_id");
171                         }
172                 }
173
174                 goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
175                 return; // NOTREACHED
176         }
177
178     goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
179
180 }
181
182
183
184 function videos_content(&$a) {
185
186         // URLs (most aren't currently implemented):
187         // videos/name
188         // videos/name/upload
189         // videos/name/upload/xxxxx (xxxxx is album name)
190         // videos/name/album/xxxxx
191         // videos/name/album/xxxxx/edit
192         // videos/name/video/xxxxx
193         // videos/name/video/xxxxx/edit
194
195
196         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
197                 notice( t('Public access denied.') . EOL);
198                 return;
199         }
200
201
202         require_once('include/bbcode.php');
203         require_once('include/security.php');
204         require_once('include/conversation.php');
205
206         if(! x($a->data,'user')) {
207                 notice( t('No videos selected') . EOL );
208                 return;
209         }
210
211         //$phototypes = Photo::supportedTypes();
212
213         $_SESSION['video_return'] = $a->cmd;
214
215         //
216         // Parse arguments
217         //
218
219         if($a->argc > 3) {
220                 $datatype = $a->argv[2];
221                 $datum = $a->argv[3];
222         }
223         elseif(($a->argc > 2) && ($a->argv[2] === 'upload'))
224                 $datatype = 'upload';
225         else
226                 $datatype = 'summary';
227
228         if($a->argc > 4)
229                 $cmd = $a->argv[4];
230         else
231                 $cmd = 'view';
232
233         //
234         // Setup permissions structures
235         //
236
237         $can_post       = false;
238         $visitor        = 0;
239         $contact        = null;
240         $remote_contact = false;
241         $contact_id     = 0;
242
243         $owner_uid = $a->data['user']['uid'];
244
245         $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
246
247         if((local_user()) && (local_user() == $owner_uid))
248                 $can_post = true;
249         else {
250                 if($community_page && remote_user()) {
251                         if(is_array($_SESSION['remote'])) {
252                                 foreach($_SESSION['remote'] as $v) {
253                                         if($v['uid'] == $owner_uid) {
254                                                 $contact_id = $v['cid'];
255                                                 break;
256                                         }
257                                 }
258                         }
259                         if($contact_id) {
260
261                                 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
262                                         intval($contact_id),
263                                         intval($owner_uid)
264                                 );
265                                 if(count($r)) {
266                                         $can_post = true;
267                                         $contact = $r[0];
268                                         $remote_contact = true;
269                                         $visitor = $cid;
270                                 }
271                         }
272                 }
273         }
274
275         // perhaps they're visiting - but not a community page, so they wouldn't have write access
276
277         if(remote_user() && (! $visitor)) {
278                 $contact_id = 0;
279                 if(is_array($_SESSION['remote'])) {
280                         foreach($_SESSION['remote'] as $v) {
281                                 if($v['uid'] == $owner_uid) {
282                                         $contact_id = $v['cid'];
283                                         break;
284                                 }
285                         }
286                 }
287                 if($contact_id) {
288                         $groups = init_groups_visitor($contact_id);
289                         $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
290                                 intval($contact_id),
291                                 intval($owner_uid)
292                         );
293                         if(count($r)) {
294                                 $contact = $r[0];
295                                 $remote_contact = true;
296                         }
297                 }
298         }
299
300         if(! $remote_contact) {
301                 if(local_user()) {
302                         $contact_id = $_SESSION['cid'];
303                         $contact = $a->contact;
304                 }
305         }
306
307         if($a->data['user']['hidewall'] && (local_user() != $owner_uid) && (! $remote_contact)) {
308                 notice( t('Access to this item is restricted.') . EOL);
309                 return;
310         }
311
312         $sql_extra = permissions_sql($owner_uid,$remote_contact,$groups);
313
314         $o = "";
315
316         // tabs
317         $_is_owner = (local_user() && (local_user() == $owner_uid));
318         $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);
319
320         //
321         // dispatch request
322         //
323
324
325         if($datatype === 'upload') {
326                 return; // no uploading for now
327
328                 // DELETED -- look at mod/photos.php if you want to implement
329         }
330
331         if($datatype === 'album') {
332
333                 return; // no albums for now
334
335                 // DELETED -- look at mod/photos.php if you want to implement
336         }
337
338
339         if($datatype === 'video') {
340
341                 return; // no single video view for now
342
343                 // DELETED -- look at mod/photos.php if you want to implement
344         }
345
346         // Default - show recent videos (no upload link for now)
347         //$o = '';
348
349         $r = q("SELECT hash FROM `attach` WHERE `uid` = %d AND filetype LIKE '%%video%%'
350                 $sql_extra GROUP BY hash",
351                 intval($a->data['user']['uid'])
352         );
353         if(count($r)) {
354                 $a->set_pager_total(count($r));
355                 $a->set_pager_itemspage(20);
356         }
357
358         $r = q("SELECT hash, `id`, `filename`, filetype FROM `attach`
359                 WHERE `uid` = %d AND filetype LIKE '%%video%%'
360                 $sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
361                 intval($a->data['user']['uid']),
362                 intval($a->pager['start']),
363                 intval($a->pager['itemspage'])
364         );
365
366
367
368         $videos = array();
369         if(count($r)) {
370                 foreach($r as $rr) {
371                         if($a->theme['template_engine'] === 'internal') {
372                                 $alt_e = template_escape($rr['filename']);
373                                 $name_e = template_escape($rr['album']);
374                         }
375                         else {
376                                 $alt_e = $rr['filename'];
377                                 $name_e = $rr['album'];
378                         }
379
380                         $videos[] = array(
381                                 'id'       => $rr['id'],
382                                 'link'          => $a->get_baseurl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['resource-id'],
383                                 'title'         => t('View Video'),
384                                 'src'           => $a->get_baseurl() . '/attach/' . $rr['id'] . '?attachment=0',
385                                 'alt'           => $alt_e,
386                                 'mime'          => $rr['filetype'],
387                                 'album' => array(
388                                         'link'  => $a->get_baseurl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
389                                         'name'  => $name_e,
390                                         'alt'   => t('View Album'),
391                                 ),
392
393                         );
394                 }
395         }
396
397         $tpl = get_markup_template('videos_recent.tpl');
398         $o .= replace_macros($tpl, array(
399                 '$title' => t('Recent Videos'),
400                 '$can_post' => $can_post,
401                 '$upload' => array(t('Upload New Videos'), $a->get_baseurl().'/videos/'.$a->data['user']['nickname'].'/upload'),
402                 '$videos' => $videos,
403         '$delete_url' => (($can_post)?$a->get_baseurl().'/videos/'.$a->data['user']['nickname']:False)
404         ));
405
406
407         $o .= paginate($a);
408         return $o;
409 }
410