2013-05-04 02:17:56 +02:00
|
|
|
<?php
|
2018-01-13 15:40:34 +01:00
|
|
|
/**
|
|
|
|
* @file mod/videos.php
|
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-17 01:21:56 +01:00
|
|
|
use Friendica\Model\Group;
|
2018-02-05 13:47:06 +01:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2018-01-13 15:40:34 +01:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-10-17 14:19:58 +02:00
|
|
|
use Friendica\Util\Security;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
require_once 'include/items.php';
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
function videos_init(App $a)
|
|
|
|
{
|
|
|
|
if ($a->argc > 1) {
|
2018-01-13 15:40:34 +01:00
|
|
|
DFRN::autoRedir($a, $a->argv[1]);
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ((Config::get('system', 'block_public')) && (!local_user()) && (!remote_user())) {
|
2013-05-04 02:17:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('home');
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2013-05-04 02:17:56 +02:00
|
|
|
$o = '';
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($a->argc > 1) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$nick = $a->argv[1];
|
2015-12-01 18:31:08 +01:00
|
|
|
$user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($nick)
|
2013-05-04 02:17:56 +02:00
|
|
|
);
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if (!DBA::isResult($user)) {
|
2013-05-04 02:17:56 +02:00
|
|
|
return;
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2015-12-01 18:31:08 +01:00
|
|
|
$a->data['user'] = $user[0];
|
|
|
|
$a->profile_uid = $user[0]['uid'];
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-01-15 05:44:39 +01:00
|
|
|
$profile = Profile::getByNickname($nick, $a->profile_uid);
|
2015-12-01 18:31:08 +01:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$account_type = Contact::getAccountType($profile);
|
2015-05-26 14:32:40 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("vcard-widget.tpl");
|
2015-05-26 14:32:40 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$vcard_widget = Renderer::replaceMacros($tpl, [
|
2015-12-01 19:47:23 +01:00
|
|
|
'$name' => $profile['name'],
|
|
|
|
'$photo' => $profile['photo'],
|
2018-01-01 21:51:02 +01:00
|
|
|
'$addr' => defaults($profile, 'addr', ''),
|
2015-12-01 18:31:08 +01:00
|
|
|
'$account_type' => $account_type,
|
2018-01-01 21:51:02 +01:00
|
|
|
'$pdesc' => defaults($profile, 'pdesc', ''),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
/// @TODO Old-lost code?
|
2018-10-19 10:03:52 +02:00
|
|
|
/*$sql_extra = Security::getPermissionsSQLByUserId($a->data['user']['uid']);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
$albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc",
|
|
|
|
intval($a->data['user']['uid'])
|
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(count($albums)) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$a->data['albums'] = $albums;
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
$albums_visible = ((intval($a->data['user']['hidewall']) && (!local_user()) && (!remote_user())) ? false : true);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($albums_visible) {
|
2015-12-01 21:07:05 +01:00
|
|
|
$o .= '<div id="sidebar-photos-albums" class="widget">';
|
2018-01-22 15:16:25 +01:00
|
|
|
$o .= '<h3>' . '<a href="' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '">' . L10n::t('Photo Albums') . '</a></h3>';
|
2015-05-23 22:35:02 +02:00
|
|
|
|
2013-05-04 02:17:56 +02:00
|
|
|
$o .= '<ul>';
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($albums as $album) {
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
// don't show contact photos. We once translated this name, but then you could still access it under
|
|
|
|
// a different language setting. Now we store the name in English and check in English (and translated for legacy albums).
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if((!strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === L10n::t('Contact Photos')))
|
2013-05-04 02:17:56 +02:00
|
|
|
continue;
|
2015-05-23 22:35:02 +02:00
|
|
|
$o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
$o .= '</ul>';
|
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
if(local_user() && $a->data['user']['uid'] == local_user()) {
|
2018-01-22 15:16:25 +01:00
|
|
|
$o .= '<div id="photo-albums-upload-link"><a href="' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '/upload" >' .L10n::t('Upload New Photos') . '</a></div>';
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</div>';
|
|
|
|
}*/
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
// If not there, create 'aside' empty
|
|
|
|
if (!isset($a->page['aside'])) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$a->page['aside'] = '';
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
$a->page['aside'] .= $vcard_widget;
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("videos_head.tpl");
|
2018-10-31 15:35:50 +01:00
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros($tpl,[
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
function videos_post(App $a)
|
|
|
|
{
|
2015-05-23 22:35:02 +02:00
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2016-12-20 11:33:04 +01:00
|
|
|
if (local_user() != $owner_uid) {
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2016-12-20 11:33:04 +01:00
|
|
|
}
|
2015-05-23 22:35:02 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if (($a->argc == 2) && !empty($_POST['delete']) && !empty($_POST['id'])) {
|
2015-05-23 22:35:02 +02:00
|
|
|
// Check if we should do HTML-based delete confirmation
|
2018-07-25 04:54:00 +02:00
|
|
|
if (empty($_REQUEST['confirm'])) {
|
|
|
|
if (!empty($_REQUEST['canceled'])) {
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2016-12-20 11:33:04 +01:00
|
|
|
}
|
2015-05-23 22:35:02 +02:00
|
|
|
|
|
|
|
$drop_url = $a->query_string;
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$a->page['content'] = Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
|
2015-05-23 22:35:02 +02:00
|
|
|
'$method' => 'post',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$message' => L10n::t('Do you really want to delete this video?'),
|
2018-01-15 14:05:12 +01:00
|
|
|
'$extra_inputs' => [
|
2018-07-25 04:54:00 +02:00
|
|
|
['name' => 'id' , 'value' => $_POST['id']],
|
|
|
|
['name' => 'delete', 'value' => 'x']
|
2018-01-15 14:05:12 +01:00
|
|
|
],
|
2018-01-22 15:16:25 +01:00
|
|
|
'$confirm' => L10n::t('Delete Video'),
|
2015-05-23 22:35:02 +02:00
|
|
|
'$confirm_url' => $drop_url,
|
|
|
|
'$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
|
2018-01-22 15:16:25 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2015-05-23 22:35:02 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2015-05-23 22:35:02 +02:00
|
|
|
$a->error = 1; // Set $a->error so the other module functions don't execute
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2015-05-23 22:35:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$video_id = $_POST['id'];
|
|
|
|
|
|
|
|
$r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($video_id)
|
2015-05-23 22:35:02 +02:00
|
|
|
);
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2015-05-23 22:35:02 +02:00
|
|
|
q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($video_id)
|
2015-05-23 22:35:02 +02:00
|
|
|
);
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2018-02-06 13:40:22 +01:00
|
|
|
$i = q("SELECT `id` FROM `item` WHERE `attach` like '%%attach/%s%%' AND `uid` = %d LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($video_id),
|
2015-05-23 22:35:02 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-02-06 13:40:22 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($i)) {
|
2018-05-29 07:22:57 +02:00
|
|
|
Item::deleteForUser(['id' => $i[0]['id']], local_user());
|
2015-05-23 22:35:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2015-05-23 22:35:02 +02:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
function videos_content(App $a)
|
|
|
|
{
|
2013-05-04 02:17:56 +02:00
|
|
|
// URLs (most aren't currently implemented):
|
|
|
|
// videos/name
|
|
|
|
// videos/name/upload
|
|
|
|
// videos/name/upload/xxxxx (xxxxx is album name)
|
|
|
|
// videos/name/album/xxxxx
|
|
|
|
// videos/name/album/xxxxx/edit
|
|
|
|
// videos/name/video/xxxxx
|
|
|
|
// videos/name/video/xxxxx/edit
|
|
|
|
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ((Config::get('system', 'block_public')) && (!local_user()) && (!remote_user())) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Public access denied.') . EOL);
|
2013-05-04 02:17:56 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-05-23 22:35:02 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
require_once 'include/conversation.php';
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if (empty($a->data['user'])) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No videos selected') . EOL );
|
2013-05-04 02:17:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//$phototypes = Photo::supportedTypes();
|
|
|
|
|
|
|
|
$_SESSION['video_return'] = $a->cmd;
|
|
|
|
|
|
|
|
//
|
2015-05-23 22:35:02 +02:00
|
|
|
// Parse arguments
|
2013-05-04 02:17:56 +02:00
|
|
|
//
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($a->argc > 3) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$datatype = $a->argv[2];
|
|
|
|
$datum = $a->argv[3];
|
2018-07-25 04:54:00 +02:00
|
|
|
} elseif(($a->argc > 2) && ($a->argv[2] === 'upload')) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$datatype = 'upload';
|
2018-07-25 04:54:00 +02:00
|
|
|
} else {
|
2013-05-04 02:17:56 +02:00
|
|
|
$datatype = 'summary';
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($a->argc > 4) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$cmd = $a->argv[4];
|
2018-07-25 04:54:00 +02:00
|
|
|
} else {
|
2013-05-04 02:17:56 +02:00
|
|
|
$cmd = 'view';
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Setup permissions structures
|
|
|
|
//
|
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
|
|
|
$contact = null;
|
|
|
|
$remote_contact = false;
|
|
|
|
$contact_id = 0;
|
|
|
|
|
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2018-07-28 01:25:57 +02:00
|
|
|
$community_page = (($a->data['user']['page-flags'] == Contact::PAGE_COMMUNITY) ? true : false);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ((local_user()) && (local_user() == $owner_uid)) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$can_post = true;
|
2018-07-25 04:54:00 +02:00
|
|
|
} elseif ($community_page && remote_user()) {
|
|
|
|
if (!empty($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $v) {
|
|
|
|
if ($v['uid'] == $owner_uid) {
|
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-25 04:54:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($contact_id > 0) {
|
|
|
|
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($owner_uid)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$can_post = true;
|
|
|
|
$contact = $r[0];
|
|
|
|
$remote_contact = true;
|
|
|
|
$visitor = $contact_id;
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
$groups = [];
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
// perhaps they're visiting - but not a community page, so they wouldn't have write access
|
2018-07-25 04:54:00 +02:00
|
|
|
if (remote_user() && (!$visitor)) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$contact_id = 0;
|
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 07:05:49 +02:00
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if (!empty($_SESSION['remote'])) {
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($_SESSION['remote'] as $v) {
|
|
|
|
if($v['uid'] == $owner_uid) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-25 04:54:00 +02:00
|
|
|
|
|
|
|
if ($contact_id > 0) {
|
2017-12-17 01:21:56 +01:00
|
|
|
$groups = Group::getIdsByContactId($contact_id);
|
2013-05-04 02:17:56 +02:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($owner_uid)
|
|
|
|
);
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2013-05-04 02:17:56 +02:00
|
|
|
$contact = $r[0];
|
|
|
|
$remote_contact = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if (!$remote_contact && local_user()) {
|
|
|
|
$contact_id = $_SESSION['cid'];
|
|
|
|
$contact = $a->contact;
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($a->data['user']['hidewall'] && (local_user() != $owner_uid) && (!$remote_contact)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Access to this item is restricted.') . EOL);
|
2013-05-04 02:17:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:30:41 +02:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($owner_uid, $remote_contact, $groups);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
$o = "";
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
$_is_owner = (local_user() && (local_user() == $owner_uid));
|
2018-01-15 03:22:39 +01:00
|
|
|
$o .= Profile::getTabs($a, $_is_owner, $a->data['user']['nickname']);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// dispatch request
|
|
|
|
//
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($datatype === 'upload') {
|
2013-05-04 02:17:56 +02:00
|
|
|
return; // no uploading for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($datatype === 'album') {
|
2013-05-04 02:17:56 +02:00
|
|
|
return; // no albums for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
2015-05-23 22:35:02 +02:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
|
|
|
|
2018-07-25 04:54:00 +02:00
|
|
|
if ($datatype === 'video') {
|
2013-05-04 02:17:56 +02:00
|
|
|
return; // no single video view for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default - show recent videos (no upload link for now)
|
|
|
|
//$o = '';
|
|
|
|
|
2018-10-24 08:15:24 +02:00
|
|
|
$total = 0;
|
2013-05-04 02:17:56 +02:00
|
|
|
$r = q("SELECT hash FROM `attach` WHERE `uid` = %d AND filetype LIKE '%%video%%'
|
|
|
|
$sql_extra GROUP BY hash",
|
|
|
|
intval($a->data['user']['uid'])
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-24 08:15:24 +02:00
|
|
|
$total = count($r);
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
2018-10-24 17:42:59 +02:00
|
|
|
|
|
|
|
$pager = new Pager($a->query_string, 20);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2017-04-15 00:42:44 +02:00
|
|
|
$r = q("SELECT hash, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`created`) AS `created`,
|
|
|
|
ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`filetype`) as `filetype`
|
|
|
|
FROM `attach`
|
2013-05-04 02:17:56 +02:00
|
|
|
WHERE `uid` = %d AND filetype LIKE '%%video%%'
|
2017-04-15 00:42:44 +02:00
|
|
|
$sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
|
2013-05-04 02:17:56 +02:00
|
|
|
intval($a->data['user']['uid']),
|
2018-10-24 08:15:24 +02:00
|
|
|
$pager->getStart(),
|
|
|
|
$pager->getItemsPerPage()
|
2013-05-04 02:17:56 +02:00
|
|
|
);
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$videos = [];
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2017-11-27 07:44:49 +01:00
|
|
|
$alt_e = $rr['filename'];
|
2018-08-19 03:52:21 +02:00
|
|
|
/// @todo The album isn't part of the above query. This seems to be some unfinished code that needs to be reworked completely.
|
2018-08-29 20:28:13 +02:00
|
|
|
$rr['album'] = '';
|
2017-11-27 07:44:49 +01:00
|
|
|
$name_e = $rr['album'];
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$videos[] = [
|
2013-05-04 02:17:56 +02:00
|
|
|
'id' => $rr['id'],
|
2018-08-29 20:28:13 +02:00
|
|
|
'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['hash'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'title' => L10n::t('View Video'),
|
2017-08-26 09:32:10 +02:00
|
|
|
'src' => System::baseUrl() . '/attach/' . $rr['id'] . '?attachment=0',
|
2016-12-20 12:36:51 +01:00
|
|
|
'alt' => $alt_e,
|
|
|
|
'mime' => $rr['filetype'],
|
2018-01-15 14:05:12 +01:00
|
|
|
'album' => [
|
2017-08-26 09:32:10 +02:00
|
|
|
'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
|
2013-05-04 02:17:56 +02:00
|
|
|
'name' => $name_e,
|
2018-01-22 15:16:25 +01:00
|
|
|
'alt' => L10n::t('View Album'),
|
2018-01-15 14:05:12 +01:00
|
|
|
],
|
|
|
|
];
|
2013-05-04 02:17:56 +02:00
|
|
|
}
|
|
|
|
}
|
2015-05-23 22:35:02 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('videos_recent.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$title' => L10n::t('Recent Videos'),
|
2016-12-20 12:36:51 +01:00
|
|
|
'$can_post' => $can_post,
|
2018-07-25 04:54:00 +02:00
|
|
|
'$upload' => [L10n::t('Upload New Videos'), System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/upload'],
|
2016-12-20 12:36:51 +01:00
|
|
|
'$videos' => $videos,
|
2018-07-25 04:54:00 +02:00
|
|
|
'$delete_url' => (($can_post) ? System::baseUrl() . '/videos/' . $a->data['user']['nickname'] : false)
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-05-04 02:17:56 +02:00
|
|
|
|
2018-10-24 17:42:59 +02:00
|
|
|
$o .= $pager->renderFull($total);
|
2018-07-25 04:54:00 +02:00
|
|
|
|
2013-05-04 02:17:56 +02:00
|
|
|
return $o;
|
|
|
|
}
|