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');
9 function videos_init(App $a) {
12 auto_redir($a, $a->argv[1]);
14 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
18 nav_set_selected('home');
24 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
31 $a->data['user'] = $user[0];
32 $a->profile_uid = $user[0]['uid'];
34 $profile = get_profiledata_by_nick($nick, $a->profile_uid);
36 $account_type = account_type($profile);
38 $tpl = get_markup_template("vcard-widget.tpl");
40 $vcard_widget .= replace_macros($tpl, array(
41 '$name' => $profile['name'],
42 '$photo' => $profile['photo'],
43 '$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""),
44 '$account_type' => $account_type,
45 '$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""),
49 /*$sql_extra = permissions_sql($a->data['user']['uid']);
51 $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc",
52 intval($a->data['user']['uid'])
56 $a->data['albums'] = $albums;
58 $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);
61 $o .= '<div id="sidebar-photos-albums" class="widget">';
62 $o .= '<h3>' . '<a href="' . App::get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h3>';
65 foreach($albums as $album) {
67 // don't show contact photos. We once translated this name, but then you could still access it under
68 // a different language setting. Now we store the name in English and check in English (and translated for legacy albums).
70 if((! strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos')))
72 $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
76 if(local_user() && $a->data['user']['uid'] == local_user()) {
77 $o .= '<div id="photo-albums-upload-link"><a href="' . App::get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload" >' .t('Upload New Photos') . '</a></div>';
83 if(! x($a->page,'aside'))
84 $a->page['aside'] = '';
85 $a->page['aside'] .= $vcard_widget;
88 $tpl = get_markup_template("videos_head.tpl");
89 $a->page['htmlhead'] .= replace_macros($tpl,array(
90 '$baseurl' => App::get_baseurl(),
93 $tpl = get_markup_template("videos_end.tpl");
94 $a->page['end'] .= replace_macros($tpl,array(
95 '$baseurl' => App::get_baseurl(),
105 function videos_post(App $a) {
107 $owner_uid = $a->data['user']['uid'];
109 if (local_user() != $owner_uid) {
110 goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
113 if (($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
115 // Check if we should do HTML-based delete confirmation
116 if (!x($_REQUEST,'confirm')) {
117 if (x($_REQUEST,'canceled')) {
118 goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
121 $drop_url = $a->query_string;
122 $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
124 '$message' => t('Do you really want to delete this video?'),
125 '$extra_inputs' => array(
126 array('name'=>'id', 'value'=> $_POST['id']),
127 array('name'=>'delete', 'value'=>'x')
129 '$confirm' => t('Delete Video'),
130 '$confirm_url' => $drop_url,
131 '$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
132 '$cancel' => t('Cancel'),
135 $a->error = 1; // Set $a->error so the other module functions don't execute
139 $video_id = $_POST['id'];
141 $r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
142 intval(local_user()),
146 if (dbm::is_result($r)) {
147 q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
148 intval(local_user()),
151 $i = q("SELECT * FROM `item` WHERE `attach` like '%%attach/%s%%' AND `uid` = %d LIMIT 1",
155 //echo "<pre>"; var_dump($i); killme();
156 if (dbm::is_result($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()),
163 create_tags_from_itemuri($i[0]['uri'], local_user());
164 delete_thread_uri($i[0]['uri'], local_user());
166 $url = App::get_baseurl();
167 $drop_id = intval($i[0]['id']);
169 if ($i[0]['visible']) {
170 proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
175 goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
176 return; // NOTREACHED
179 goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
185 function videos_content(App $a) {
187 // URLs (most aren't currently implemented):
189 // videos/name/upload
190 // videos/name/upload/xxxxx (xxxxx is album name)
191 // videos/name/album/xxxxx
192 // videos/name/album/xxxxx/edit
193 // videos/name/video/xxxxx
194 // videos/name/video/xxxxx/edit
197 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
198 notice( t('Public access denied.') . EOL);
203 require_once('include/bbcode.php');
204 require_once('include/security.php');
205 require_once('include/conversation.php');
207 if(! x($a->data,'user')) {
208 notice( t('No videos selected') . EOL );
212 //$phototypes = Photo::supportedTypes();
214 $_SESSION['video_return'] = $a->cmd;
221 $datatype = $a->argv[2];
222 $datum = $a->argv[3];
224 elseif(($a->argc > 2) && ($a->argv[2] === 'upload'))
225 $datatype = 'upload';
227 $datatype = 'summary';
235 // Setup permissions structures
241 $remote_contact = false;
244 $owner_uid = $a->data['user']['uid'];
246 $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
248 if((local_user()) && (local_user() == $owner_uid))
251 if($community_page && remote_user()) {
252 if(is_array($_SESSION['remote'])) {
253 foreach($_SESSION['remote'] as $v) {
254 if($v['uid'] == $owner_uid) {
255 $contact_id = $v['cid'];
262 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
266 if (dbm::is_result($r)) {
269 $remote_contact = true;
270 $visitor = $contact_id;
276 // perhaps they're visiting - but not a community page, so they wouldn't have write access
278 if(remote_user() && (! $visitor)) {
280 if(is_array($_SESSION['remote'])) {
281 foreach($_SESSION['remote'] as $v) {
282 if($v['uid'] == $owner_uid) {
283 $contact_id = $v['cid'];
289 $groups = init_groups_visitor($contact_id);
290 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
294 if (dbm::is_result($r)) {
296 $remote_contact = true;
301 if(! $remote_contact) {
303 $contact_id = $_SESSION['cid'];
304 $contact = $a->contact;
308 if($a->data['user']['hidewall'] && (local_user() != $owner_uid) && (! $remote_contact)) {
309 notice( t('Access to this item is restricted.') . EOL);
313 $sql_extra = permissions_sql($owner_uid,$remote_contact,$groups);
318 $_is_owner = (local_user() && (local_user() == $owner_uid));
319 $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);
326 if($datatype === 'upload') {
327 return; // no uploading for now
329 // DELETED -- look at mod/photos.php if you want to implement
332 if($datatype === 'album') {
334 return; // no albums for now
336 // DELETED -- look at mod/photos.php if you want to implement
340 if($datatype === 'video') {
342 return; // no single video view for now
344 // DELETED -- look at mod/photos.php if you want to implement
347 // Default - show recent videos (no upload link for now)
350 $r = q("SELECT hash FROM `attach` WHERE `uid` = %d AND filetype LIKE '%%video%%'
351 $sql_extra GROUP BY hash",
352 intval($a->data['user']['uid'])
354 if (dbm::is_result($r)) {
355 $a->set_pager_total(count($r));
356 $a->set_pager_itemspage(20);
359 $r = q("SELECT hash, `id`, `filename`, filetype FROM `attach`
360 WHERE `uid` = %d AND filetype LIKE '%%video%%'
361 $sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
362 intval($a->data['user']['uid']),
363 intval($a->pager['start']),
364 intval($a->pager['itemspage'])
370 if (dbm::is_result($r)) {
371 foreach ($r as $rr) {
372 if ($a->theme['template_engine'] === 'internal') {
373 $alt_e = template_escape($rr['filename']);
374 $name_e = template_escape($rr['album']);
377 $alt_e = $rr['filename'];
378 $name_e = $rr['album'];
383 'link' => App::get_baseurl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['resource-id'],
384 'title' => t('View Video'),
385 'src' => App::get_baseurl() . '/attach/' . $rr['id'] . '?attachment=0',
387 'mime' => $rr['filetype'],
389 'link' => App::get_baseurl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
391 'alt' => t('View Album'),
398 $tpl = get_markup_template('videos_recent.tpl');
399 $o .= replace_macros($tpl, array(
400 '$title' => t('Recent Videos'),
401 '$can_post' => $can_post,
402 '$upload' => array(t('Upload New Videos'), App::get_baseurl().'/videos/'.$a->data['user']['nickname'].'/upload'),
403 '$videos' => $videos,
404 '$delete_url' => (($can_post)?App::get_baseurl().'/videos/'.$a->data['user']['nickname']:False)