2013-05-03 20:17:56 -04:00
|
|
|
<?php
|
2018-01-13 09:40:34 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-13 09:40:34 -05:00
|
|
|
*/
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-15 14:51:56 -05:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 02:15:24 -04:00
|
|
|
use Friendica\Content\Pager;
|
2020-02-11 21:38:42 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2019-09-28 05:59:08 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2019-01-02 11:15:43 -05:00
|
|
|
use Friendica\Model\Attach;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-02-05 07:47:06 -05:00
|
|
|
use Friendica\Model\Item;
|
2018-01-14 21:22:39 -05:00
|
|
|
use Friendica\Model\Profile;
|
2019-01-06 23:49:13 -05:00
|
|
|
use Friendica\Model\User;
|
2020-01-26 09:49:11 -05:00
|
|
|
use Friendica\Module\BaseProfile;
|
2018-10-17 08:19:58 -04:00
|
|
|
use Friendica\Util\Security;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
function videos_init(App $a)
|
|
|
|
{
|
2020-01-19 15:21:13 -05:00
|
|
|
if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
|
2013-05-03 20:17:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:51:56 -05:00
|
|
|
Nav::setSelected('home');
|
2015-09-30 12:50:44 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if ($a->argc > 1) {
|
2013-05-03 20:17:56 -04:00
|
|
|
$nick = $a->argv[1];
|
2015-12-01 12:31:08 -05:00
|
|
|
$user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
|
2018-07-21 09:10:13 -04:00
|
|
|
DBA::escape($nick)
|
2013-05-03 20:17:56 -04:00
|
|
|
);
|
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if (!DBA::isResult($user)) {
|
2013-05-03 20:17:56 -04:00
|
|
|
return;
|
2018-07-24 22:54:00 -04:00
|
|
|
}
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2015-12-01 12:31:08 -05:00
|
|
|
$a->data['user'] = $user[0];
|
|
|
|
$a->profile_uid = $user[0]['uid'];
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-01-14 23:44:39 -05:00
|
|
|
$profile = Profile::getByNickname($nick, $a->profile_uid);
|
2015-12-01 12:31:08 -05:00
|
|
|
|
2017-11-19 17:03:39 -05:00
|
|
|
$account_type = Contact::getAccountType($profile);
|
2015-05-26 08:32:40 -04:00
|
|
|
|
2020-02-11 21:38:42 -05:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget/vcard.tpl');
|
2015-05-26 08:32:40 -04:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$vcard_widget = Renderer::replaceMacros($tpl, [
|
2015-12-01 13:47:23 -05:00
|
|
|
'$name' => $profile['name'],
|
|
|
|
'$photo' => $profile['photo'],
|
2019-10-15 09:01:17 -04:00
|
|
|
'$addr' => $profile['addr'] ?? '',
|
2015-12-01 12:31:08 -05:00
|
|
|
'$account_type' => $account_type,
|
2020-06-08 19:15:08 -04:00
|
|
|
'$about' => BBCode::convert($profile['about']),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
// If not there, create 'aside' empty
|
2019-12-30 14:02:09 -05:00
|
|
|
if (!isset(DI::page()['aside'])) {
|
|
|
|
DI::page()['aside'] = '';
|
2018-07-24 22:54:00 -04:00
|
|
|
}
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= $vcard_widget;
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate("videos_head.tpl");
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl);
|
2013-05-03 20:17:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
function videos_post(App $a)
|
|
|
|
{
|
2015-05-23 16:35:02 -04:00
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2016-12-20 05:33:04 -05:00
|
|
|
if (local_user() != $owner_uid) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('videos/' . $a->data['user']['nickname']);
|
2016-12-20 05:33:04 -05:00
|
|
|
}
|
2015-05-23 16:35:02 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if (($a->argc == 2) && !empty($_POST['delete']) && !empty($_POST['id'])) {
|
2015-05-23 16:35:02 -04:00
|
|
|
$video_id = $_POST['id'];
|
|
|
|
|
2019-01-04 01:45:08 -05:00
|
|
|
if (Attach::exists(['id' => $video_id, 'uid' => local_user()])) {
|
2019-01-02 11:15:43 -05:00
|
|
|
// delete the attachment
|
|
|
|
Attach::delete(['id' => $video_id, 'uid' => local_user()]);
|
2018-07-24 22:54:00 -04:00
|
|
|
|
2019-01-02 11:15:43 -05:00
|
|
|
// delete items where the attach is used
|
|
|
|
Item::deleteForUser(['`attach` LIKE ? AND `uid` = ?',
|
|
|
|
'%attach/' . $video_id . '%',
|
|
|
|
local_user()
|
|
|
|
], local_user());
|
2015-05-23 16:35:02 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('videos/' . $a->data['user']['nickname']);
|
2015-05-23 16:35:02 -04:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('videos/' . $a->data['user']['nickname']);
|
2016-02-05 15:52:39 -05:00
|
|
|
}
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
function videos_content(App $a)
|
|
|
|
{
|
2013-05-03 20:17:56 -04: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
|
|
|
|
|
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('Public access denied.'));
|
2013-05-03 20:17:56 -04:00
|
|
|
return;
|
|
|
|
}
|
2015-05-23 16:35:02 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if (empty($a->data['user'])) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('No videos selected') . EOL );
|
2013-05-03 20:17:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//$phototypes = Photo::supportedTypes();
|
|
|
|
|
2019-12-15 19:33:13 -05:00
|
|
|
$_SESSION['video_return'] = DI::args()->getCommand();
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
//
|
2015-05-23 16:35:02 -04:00
|
|
|
// Parse arguments
|
2013-05-03 20:17:56 -04:00
|
|
|
//
|
2018-07-24 22:54:00 -04:00
|
|
|
if ($a->argc > 3) {
|
2013-05-03 20:17:56 -04:00
|
|
|
$datatype = $a->argv[2];
|
2018-07-24 22:54:00 -04:00
|
|
|
} elseif(($a->argc > 2) && ($a->argv[2] === 'upload')) {
|
2013-05-03 20:17:56 -04:00
|
|
|
$datatype = 'upload';
|
2018-07-24 22:54:00 -04:00
|
|
|
} else {
|
2013-05-03 20:17:56 -04:00
|
|
|
$datatype = 'summary';
|
2018-07-24 22:54:00 -04:00
|
|
|
}
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Setup permissions structures
|
|
|
|
//
|
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
|
|
|
$contact = null;
|
|
|
|
$remote_contact = false;
|
|
|
|
$contact_id = 0;
|
|
|
|
|
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2019-01-06 12:37:48 -05:00
|
|
|
$community_page = (($a->data['user']['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if ((local_user()) && (local_user() == $owner_uid)) {
|
2013-05-03 20:17:56 -04:00
|
|
|
$can_post = true;
|
2019-09-28 05:59:08 -04:00
|
|
|
} elseif ($community_page && !empty(Session::getRemoteContactID($owner_uid))) {
|
|
|
|
$contact_id = Session::getRemoteContactID($owner_uid);
|
2019-09-28 01:37:24 -04:00
|
|
|
$can_post = true;
|
|
|
|
$remote_contact = true;
|
|
|
|
$visitor = $contact_id;
|
2013-05-03 20:17:56 -04:00
|
|
|
}
|
|
|
|
|
2018-01-01 15:51:02 -05:00
|
|
|
// perhaps they're visiting - but not a community page, so they wouldn't have write access
|
2019-09-28 05:59:08 -04:00
|
|
|
if (!empty(Session::getRemoteContactID($owner_uid)) && !$visitor) {
|
|
|
|
$contact_id = Session::getRemoteContactID($owner_uid);
|
2019-09-28 01:37:24 -04:00
|
|
|
$remote_contact = true;
|
2013-05-03 20:17:56 -04:00
|
|
|
}
|
|
|
|
|
2019-09-28 01:37:24 -04:00
|
|
|
if ($a->data['user']['hidewall'] && (local_user() != $owner_uid) && !$remote_contact) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('Access to this item is restricted.'));
|
2013-05-03 20:17:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-28 01:37:24 -04:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($owner_uid);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
$o = "";
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
$_is_owner = (local_user() && (local_user() == $owner_uid));
|
2020-01-26 09:49:11 -05:00
|
|
|
$o .= BaseProfile::getTabsHTML($a, 'videos', $_is_owner, $a->data['user']['nickname']);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// dispatch request
|
|
|
|
//
|
2018-07-24 22:54:00 -04:00
|
|
|
if ($datatype === 'upload') {
|
2013-05-03 20:17:56 -04:00
|
|
|
return; // no uploading for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
|
|
|
}
|
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if ($datatype === 'album') {
|
2013-05-03 20:17:56 -04:00
|
|
|
return; // no albums for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
2015-05-23 16:35:02 -04:00
|
|
|
}
|
2013-05-03 20:17:56 -04:00
|
|
|
|
|
|
|
|
2018-07-24 22:54:00 -04:00
|
|
|
if ($datatype === 'video') {
|
2013-05-03 20:17:56 -04: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 02:15:24 -04:00
|
|
|
$total = 0;
|
2013-05-03 20:17:56 -04: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 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-24 02:15:24 -04:00
|
|
|
$total = count($r);
|
2013-05-03 20:17:56 -04:00
|
|
|
}
|
2018-10-24 11:42:59 -04:00
|
|
|
|
2020-02-16 11:53:52 -05:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 20);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2017-04-14 18:42:44 -04: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-03 20:17:56 -04:00
|
|
|
WHERE `uid` = %d AND filetype LIKE '%%video%%'
|
2017-04-14 18:42:44 -04:00
|
|
|
$sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
|
2013-05-03 20:17:56 -04:00
|
|
|
intval($a->data['user']['uid']),
|
2018-10-24 02:15:24 -04:00
|
|
|
$pager->getStart(),
|
|
|
|
$pager->getItemsPerPage()
|
2013-05-03 20:17:56 -04:00
|
|
|
);
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$videos = [];
|
2018-07-24 22:54:00 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2016-12-20 15:15:53 -05:00
|
|
|
foreach ($r as $rr) {
|
2017-11-27 01:44:49 -05:00
|
|
|
$alt_e = $rr['filename'];
|
2018-08-18 21:52:21 -04: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 14:28:13 -04:00
|
|
|
$rr['album'] = '';
|
2017-11-27 01:44:49 -05:00
|
|
|
$name_e = $rr['album'];
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$videos[] = [
|
2013-05-03 20:17:56 -04:00
|
|
|
'id' => $rr['id'],
|
2019-12-30 17:00:08 -05:00
|
|
|
'link' => DI::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['hash'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('View Video'),
|
2019-12-30 17:00:08 -05:00
|
|
|
'src' => DI::baseUrl() . '/attach/' . $rr['id'] . '?attachment=0',
|
2016-12-20 06:36:51 -05:00
|
|
|
'alt' => $alt_e,
|
|
|
|
'mime' => $rr['filetype'],
|
2018-01-15 08:05:12 -05:00
|
|
|
'album' => [
|
2019-12-30 17:00:08 -05:00
|
|
|
'link' => DI::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
|
2013-05-03 20:17:56 -04:00
|
|
|
'name' => $name_e,
|
2020-01-18 14:52:34 -05:00
|
|
|
'alt' => DI::l10n()->t('View Album'),
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
];
|
2013-05-03 20:17:56 -04:00
|
|
|
}
|
|
|
|
}
|
2015-05-23 16:35:02 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('videos_recent.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Recent Videos'),
|
2016-12-20 06:36:51 -05:00
|
|
|
'$can_post' => $can_post,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$upload' => [DI::l10n()->t('Upload New Videos'), DI::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/upload'],
|
2016-12-20 06:36:51 -05:00
|
|
|
'$videos' => $videos,
|
2019-12-30 17:00:08 -05:00
|
|
|
'$delete_url' => (($can_post) ? DI::baseUrl() . '/videos/' . $a->data['user']['nickname'] : false)
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2013-05-03 20:17:56 -04:00
|
|
|
|
2018-10-24 11:42:59 -04:00
|
|
|
$o .= $pager->renderFull($total);
|
2018-07-24 22:54:00 -04:00
|
|
|
|
2013-05-03 20:17:56 -04:00
|
|
|
return $o;
|
|
|
|
}
|