4 use Friendica\Core\Config;
5 use Friendica\Core\System;
6 use Friendica\Core\Worker;
7 use Friendica\Database\DBM;
8 use Friendica\Model\Contact;
10 require_once 'include/items.php';
11 require_once 'include/acl_selectors.php';
12 require_once 'include/bbcode.php';
13 require_once 'include/security.php';
14 require_once 'include/redir.php';
16 function videos_init(App $a) {
19 auto_redir($a, $a->argv[1]);
21 if((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) {
25 nav_set_selected('home');
31 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
38 $a->data['user'] = $user[0];
39 $a->profile_uid = $user[0]['uid'];
41 $profile = get_profiledata_by_nick($nick, $a->profile_uid);
43 $account_type = Contact::getAccountType($profile);
45 $tpl = get_markup_template("vcard-widget.tpl");
47 $vcard_widget = replace_macros($tpl, array(
48 '$name' => $profile['name'],
49 '$photo' => $profile['photo'],
50 '$addr' => defaults($profile, 'addr', ''),
51 '$account_type' => $account_type,
52 '$pdesc' => defaults($profile, 'pdesc', ''),
56 /*$sql_extra = permissions_sql($a->data['user']['uid']);
58 $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc",
59 intval($a->data['user']['uid'])
63 $a->data['albums'] = $albums;
65 $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);
68 $o .= '<div id="sidebar-photos-albums" class="widget">';
69 $o .= '<h3>' . '<a href="' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h3>';
72 foreach($albums as $album) {
74 // don't show contact photos. We once translated this name, but then you could still access it under
75 // a different language setting. Now we store the name in English and check in English (and translated for legacy albums).
77 if((! strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos')))
79 $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
83 if(local_user() && $a->data['user']['uid'] == local_user()) {
84 $o .= '<div id="photo-albums-upload-link"><a href="' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '/upload" >' .t('Upload New Photos') . '</a></div>';
90 if(! x($a->page,'aside'))
91 $a->page['aside'] = '';
92 $a->page['aside'] .= $vcard_widget;
95 $tpl = get_markup_template("videos_head.tpl");
96 $a->page['htmlhead'] .= replace_macros($tpl,array(
97 '$baseurl' => System::baseUrl(),
100 $tpl = get_markup_template("videos_end.tpl");
101 $a->page['end'] .= replace_macros($tpl,array(
102 '$baseurl' => System::baseUrl(),
112 function videos_post(App $a) {
114 $owner_uid = $a->data['user']['uid'];
116 if (local_user() != $owner_uid) {
117 goaway(System::baseUrl() . '/videos/' . $a->data['user']['nickname']);
120 if (($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
122 // Check if we should do HTML-based delete confirmation
123 if (!x($_REQUEST,'confirm')) {
124 if (x($_REQUEST,'canceled')) {
125 goaway(System::baseUrl() . '/videos/' . $a->data['user']['nickname']);
128 $drop_url = $a->query_string;
129 $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
131 '$message' => t('Do you really want to delete this video?'),
132 '$extra_inputs' => array(
133 array('name'=>'id', 'value'=> $_POST['id']),
134 array('name'=>'delete', 'value'=>'x')
136 '$confirm' => t('Delete Video'),
137 '$confirm_url' => $drop_url,
138 '$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
139 '$cancel' => t('Cancel'),
142 $a->error = 1; // Set $a->error so the other module functions don't execute
146 $video_id = $_POST['id'];
148 $r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
149 intval(local_user()),
153 if (DBM::is_result($r)) {
154 q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
155 intval(local_user()),
158 $i = q("SELECT * FROM `item` WHERE `attach` like '%%attach/%s%%' AND `uid` = %d LIMIT 1",
162 //echo "<pre>"; var_dump($i); killme();
163 if (DBM::is_result($i)) {
164 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
165 dbesc(datetime_convert()),
166 dbesc(datetime_convert()),
170 create_tags_from_itemuri($i[0]['uri'], local_user());
171 delete_thread_uri($i[0]['uri'], local_user());
173 $url = System::baseUrl();
174 $drop_id = intval($i[0]['id']);
176 if ($i[0]['visible']) {
177 Worker::add(PRIORITY_HIGH, "Notifier", "drop", $drop_id);
182 goaway(System::baseUrl() . '/videos/' . $a->data['user']['nickname']);
183 return; // NOTREACHED
186 goaway(System::baseUrl() . '/videos/' . $a->data['user']['nickname']);
192 function videos_content(App $a) {
194 // URLs (most aren't currently implemented):
196 // videos/name/upload
197 // videos/name/upload/xxxxx (xxxxx is album name)
198 // videos/name/album/xxxxx
199 // videos/name/album/xxxxx/edit
200 // videos/name/video/xxxxx
201 // videos/name/video/xxxxx/edit
204 if((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) {
205 notice( t('Public access denied.') . EOL);
210 require_once('include/bbcode.php');
211 require_once('include/security.php');
212 require_once('include/conversation.php');
214 if(! x($a->data,'user')) {
215 notice( t('No videos selected') . EOL );
219 //$phototypes = Photo::supportedTypes();
221 $_SESSION['video_return'] = $a->cmd;
228 $datatype = $a->argv[2];
229 $datum = $a->argv[3];
231 elseif(($a->argc > 2) && ($a->argv[2] === 'upload'))
232 $datatype = 'upload';
234 $datatype = 'summary';
242 // Setup permissions structures
248 $remote_contact = false;
251 $owner_uid = $a->data['user']['uid'];
253 $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
255 if((local_user()) && (local_user() == $owner_uid))
258 if($community_page && remote_user()) {
259 if(is_array($_SESSION['remote'])) {
260 foreach($_SESSION['remote'] as $v) {
261 if($v['uid'] == $owner_uid) {
262 $contact_id = $v['cid'];
269 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
273 if (DBM::is_result($r)) {
276 $remote_contact = true;
277 $visitor = $contact_id;
285 // perhaps they're visiting - but not a community page, so they wouldn't have write access
286 if(remote_user() && (! $visitor)) {
288 if(is_array($_SESSION['remote'])) {
289 foreach($_SESSION['remote'] as $v) {
290 if($v['uid'] == $owner_uid) {
291 $contact_id = $v['cid'];
297 $groups = init_groups_visitor($contact_id);
298 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
302 if (DBM::is_result($r)) {
304 $remote_contact = true;
309 if(! $remote_contact) {
311 $contact_id = $_SESSION['cid'];
312 $contact = $a->contact;
316 if($a->data['user']['hidewall'] && (local_user() != $owner_uid) && (! $remote_contact)) {
317 notice( t('Access to this item is restricted.') . EOL);
321 $sql_extra = permissions_sql($owner_uid, $remote_contact, $groups);
326 $_is_owner = (local_user() && (local_user() == $owner_uid));
327 $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);
334 if($datatype === 'upload') {
335 return; // no uploading for now
337 // DELETED -- look at mod/photos.php if you want to implement
340 if($datatype === 'album') {
342 return; // no albums for now
344 // DELETED -- look at mod/photos.php if you want to implement
348 if($datatype === 'video') {
350 return; // no single video view for now
352 // DELETED -- look at mod/photos.php if you want to implement
355 // Default - show recent videos (no upload link for now)
358 $r = q("SELECT hash FROM `attach` WHERE `uid` = %d AND filetype LIKE '%%video%%'
359 $sql_extra GROUP BY hash",
360 intval($a->data['user']['uid'])
362 if (DBM::is_result($r)) {
363 $a->set_pager_total(count($r));
364 $a->set_pager_itemspage(20);
367 $r = q("SELECT hash, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`created`) AS `created`,
368 ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`filetype`) as `filetype`
370 WHERE `uid` = %d AND filetype LIKE '%%video%%'
371 $sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
372 intval($a->data['user']['uid']),
373 intval($a->pager['start']),
374 intval($a->pager['itemspage'])
380 if (DBM::is_result($r)) {
381 foreach ($r as $rr) {
382 $alt_e = $rr['filename'];
383 $name_e = $rr['album'];
387 'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['resource-id'],
388 'title' => t('View Video'),
389 'src' => System::baseUrl() . '/attach/' . $rr['id'] . '?attachment=0',
391 'mime' => $rr['filetype'],
393 'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
395 'alt' => t('View Album'),
402 $tpl = get_markup_template('videos_recent.tpl');
403 $o .= replace_macros($tpl, array(
404 '$title' => t('Recent Videos'),
405 '$can_post' => $can_post,
406 '$upload' => array(t('Upload New Videos'), System::baseUrl().'/videos/'.$a->data['user']['nickname'].'/upload'),
407 '$videos' => $videos,
408 '$delete_url' => (($can_post)?System::baseUrl().'/videos/'.$a->data['user']['nickname']:False)