2016-06-19 20:04:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2020-01-19 06:05:23 +00:00
|
|
|
* The calendar module
|
|
|
|
*
|
|
|
|
* This calendar is for profile visitors and contains only the events
|
|
|
|
* of the profile owner
|
2016-06-19 20:04:34 +00:00
|
|
|
*/
|
2018-01-25 02:08:45 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 19:51:56 +00:00
|
|
|
use Friendica\Content\Nav;
|
2018-03-17 01:45:02 +00:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-09-28 09:59:08 +00:00
|
|
|
use Friendica\Core\Session;
|
2022-04-09 11:58:01 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:28:31 +00:00
|
|
|
use Friendica\DI;
|
2018-03-17 01:45:02 +00:00
|
|
|
use Friendica\Model\Event;
|
2018-10-17 19:30:41 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-07-04 17:25:08 +00:00
|
|
|
use Friendica\Model\User;
|
2020-01-26 14:49:11 +00:00
|
|
|
use Friendica\Module\BaseProfile;
|
2022-04-10 08:31:55 +00:00
|
|
|
use Friendica\Module\Response;
|
2020-07-09 19:04:30 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-02-03 17:25:58 +00:00
|
|
|
use Friendica\Util\Temporal;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
function cal_init(App $a)
|
|
|
|
{
|
2020-01-19 20:21:13 +00:00
|
|
|
if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
|
2020-07-09 19:04:30 +00:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
if (DI::args()->getArgc() < 2) {
|
2020-07-09 19:04:30 +00:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
|
2018-08-01 05:29:58 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 19:51:56 +00:00
|
|
|
Nav::setSelected('events');
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2018-08-01 05:29:58 +00:00
|
|
|
// if it's a json request abort here becaus we don't
|
|
|
|
// need the widget data
|
2021-07-25 13:08:22 +00:00
|
|
|
if (!empty(DI::args()->getArgv()[2]) && (DI::args()->getArgv()[2] === 'json')) {
|
2018-08-01 05:29:58 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
$owner = User::getOwnerDataByNick(DI::args()->getArgv()[1]);
|
2021-07-24 10:09:39 +00:00
|
|
|
if (empty($owner)) {
|
2020-07-09 19:04:30 +00:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
|
|
|
|
}
|
|
|
|
|
2019-12-30 19:02:09 +00:00
|
|
|
if (empty(DI::page()['aside'])) {
|
|
|
|
DI::page()['aside'] = '';
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2021-07-24 10:09:39 +00:00
|
|
|
DI::page()['aside'] .= Widget\VCard::getHTML($owner);
|
|
|
|
DI::page()['aside'] .= Widget\CalendarExport::getHTML($owner['uid']);
|
2018-08-01 05:29:58 +00:00
|
|
|
|
2016-06-19 20:04:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
function cal_content(App $a)
|
|
|
|
{
|
2021-07-25 13:08:22 +00:00
|
|
|
$owner = User::getOwnerDataByNick(DI::args()->getArgv()[1]);
|
2021-07-24 10:09:39 +00:00
|
|
|
if (empty($owner)) {
|
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
|
|
|
|
}
|
|
|
|
|
2018-01-15 19:51:56 +00:00
|
|
|
Nav::setSelected('events');
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// get the translation strings for the callendar
|
2018-03-17 01:45:02 +00:00
|
|
|
$i18n = Event::getStrings();
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2020-08-15 22:56:17 +00:00
|
|
|
DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.min.css');
|
|
|
|
DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.print.min.css', 'print');
|
|
|
|
DI::page()->registerFooterScript('view/asset/moment/min/moment-with-locales.min.js');
|
|
|
|
DI::page()->registerFooterScript('view/asset/fullcalendar/dist/fullcalendar.min.js');
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$htpl = Renderer::getMarkupTemplate('event_head.tpl');
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros($htpl, [
|
2021-07-24 10:09:39 +00:00
|
|
|
'$module_url' => '/cal/' . $owner['nickname'],
|
2016-06-19 20:04:34 +00:00
|
|
|
'$modparams' => 2,
|
|
|
|
'$i18n' => $i18n,
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
$mode = 'view';
|
|
|
|
$y = 0;
|
|
|
|
$m = 0;
|
2018-11-30 14:06:22 +00:00
|
|
|
$ignored = (!empty($_REQUEST['ignored']) ? intval($_REQUEST['ignored']) : 0);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
$format = 'ical';
|
2021-07-25 13:08:22 +00:00
|
|
|
if (DI::args()->getArgc() == 4 && DI::args()->getArgv()[2] == 'export') {
|
2018-01-05 00:42:48 +00:00
|
|
|
$mode = 'export';
|
2021-07-25 13:08:22 +00:00
|
|
|
$format = DI::args()->getArgv()[3];
|
2016-06-20 21:31:49 +00:00
|
|
|
}
|
|
|
|
|
2016-06-19 20:04:34 +00:00
|
|
|
// Setup permissions structures
|
2021-07-24 10:09:39 +00:00
|
|
|
$owner_uid = intval($owner['uid']);
|
|
|
|
$nick = $owner['nickname'];
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2021-07-24 10:09:39 +00:00
|
|
|
$contact_id = Session::getRemoteContactID($owner['uid']);
|
2018-01-05 00:42:48 +00:00
|
|
|
|
2021-07-24 10:09:39 +00:00
|
|
|
$remote_contact = $contact_id && DBA::exists('contact', ['id' => $contact_id, 'uid' => $owner['uid']]);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2021-07-24 10:09:39 +00:00
|
|
|
$is_owner = local_user() == $owner['uid'];
|
2018-01-05 00:42:48 +00:00
|
|
|
|
2021-07-24 10:09:39 +00:00
|
|
|
if ($owner['hidewall'] && !$is_owner && !$remote_contact) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Access to this profile has been restricted.'));
|
2016-06-19 20:04:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-21 22:39:52 +00:00
|
|
|
// get the permissions
|
2019-09-28 05:37:24 +00:00
|
|
|
$sql_perms = Item::getPermissionsSQLByUserId($owner_uid);
|
2016-06-21 22:39:52 +00:00
|
|
|
// we only want to have the events of the profile owner
|
2016-06-22 13:06:14 +00:00
|
|
|
$sql_extra = " AND `event`.`cid` = 0 " . $sql_perms;
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// get the tab navigation bar
|
2021-08-08 10:14:56 +00:00
|
|
|
$tabs = BaseProfile::getTabsHTML($a, 'cal', false, $owner['nickname'], $owner['hide-friends']);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// The view mode part is similiar to /mod/events.php
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($mode == 'view') {
|
2018-01-27 02:38:34 +00:00
|
|
|
$thisyear = DateTimeFormat::localNow('Y');
|
|
|
|
$thismonth = DateTimeFormat::localNow('m');
|
2018-01-05 00:42:48 +00:00
|
|
|
if (!$y) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$y = intval($thisyear);
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$m) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$m = intval($thismonth);
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
|
|
|
|
// An upper limit was chosen to keep search engines from exploring links millions of years in the future.
|
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($y < 1901) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$y = 1900;
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($y > 2099) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$y = 2100;
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
$nextyear = $y;
|
|
|
|
$nextmonth = $m + 1;
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($nextmonth > 12) {
|
|
|
|
$nextmonth = 1;
|
2016-06-19 20:04:34 +00:00
|
|
|
$nextyear ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$prevyear = $y;
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($m > 1) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$prevmonth = $m - 1;
|
2018-01-05 00:42:48 +00:00
|
|
|
} else {
|
2016-06-19 20:04:34 +00:00
|
|
|
$prevmonth = 12;
|
|
|
|
$prevyear --;
|
|
|
|
}
|
|
|
|
|
2018-02-03 17:25:58 +00:00
|
|
|
$dim = Temporal::getDaysInMonth($y, $m);
|
2018-01-05 00:42:48 +00:00
|
|
|
$start = sprintf('%d-%d-%d %d:%d:%d', $y, $m, 1, 0, 0, 0);
|
|
|
|
$finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
if (!empty(DI::args()->getArgv()[2]) && (DI::args()->getArgv()[2] === 'json')) {
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_GET['start'])) {
|
2018-01-05 00:42:48 +00:00
|
|
|
$start = $_GET['start'];
|
|
|
|
}
|
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_GET['end'])) {
|
2018-01-05 00:42:48 +00:00
|
|
|
$finish = $_GET['end'];
|
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2018-01-27 02:38:34 +00:00
|
|
|
$start = DateTimeFormat::utc($start);
|
|
|
|
$finish = DateTimeFormat::utc($finish);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// put the event parametes in an array so we can better transmit them
|
2018-01-15 13:05:12 +00:00
|
|
|
$event_params = [
|
2019-10-15 13:01:17 +00:00
|
|
|
'event_id' => intval($_GET['id'] ?? 0),
|
2018-03-17 01:45:02 +00:00
|
|
|
'start' => $start,
|
|
|
|
'finish' => $finish,
|
|
|
|
'ignore' => $ignored,
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
// get events by id or by date
|
2018-03-17 01:45:02 +00:00
|
|
|
if ($event_params['event_id']) {
|
2018-08-14 01:15:39 +00:00
|
|
|
$r = Event::getListById($owner_uid, $event_params['event_id'], $sql_extra);
|
2016-06-19 20:04:34 +00:00
|
|
|
} else {
|
2018-03-17 01:45:02 +00:00
|
|
|
$r = Event::getListByDate($owner_uid, $event_params, $sql_extra);
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$links = [];
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2018-03-17 01:45:02 +00:00
|
|
|
$r = Event::sortByDate($r);
|
2016-12-20 20:15:53 +00:00
|
|
|
foreach ($r as $rr) {
|
2021-10-03 17:21:17 +00:00
|
|
|
$j = DateTimeFormat::local($rr['start'], 'j');
|
2018-11-30 14:06:22 +00:00
|
|
|
if (empty($links[$j])) {
|
2019-12-30 22:00:08 +00:00
|
|
|
$links[$j] = DI::baseUrl() . '/' . DI::args()->getCommand() . '#link-' . $j;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// transform the event in a usable array
|
2018-03-17 01:45:02 +00:00
|
|
|
$events = Event::prepareListForTemplate($r);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2021-07-25 13:08:22 +00:00
|
|
|
if (!empty(DI::args()->getArgv()[2]) && (DI::args()->getArgv()[2] === 'json')) {
|
2022-04-09 11:58:01 +00:00
|
|
|
System::jsonExit($events);
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// links: array('href', 'text', 'extra css classes', 'title')
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_GET['id'])) {
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate("event.tpl");
|
2016-06-19 20:04:34 +00:00
|
|
|
} else {
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate("events_js.tpl");
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get rid of dashes in key names, Smarty3 can't handle them
|
2018-01-05 00:42:48 +00:00
|
|
|
foreach ($events as $key => $event) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$event_item = [];
|
2018-01-05 00:42:48 +00:00
|
|
|
foreach ($event['item'] as $k => $v) {
|
|
|
|
$k = str_replace('-', '_', $k);
|
2016-06-19 20:04:34 +00:00
|
|
|
$event_item[$k] = $v;
|
|
|
|
}
|
|
|
|
$events[$key]['item'] = $event_item;
|
|
|
|
}
|
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2018-01-05 00:42:48 +00:00
|
|
|
'$tabs' => $tabs,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$title' => DI::l10n()->t('Events'),
|
|
|
|
'$view' => DI::l10n()->t('View'),
|
|
|
|
'$previous' => [DI::baseUrl() . "/events/$prevyear/$prevmonth", DI::l10n()->t('Previous'), '', ''],
|
|
|
|
'$next' => [DI::baseUrl() . "/events/$nextyear/$nextmonth", DI::l10n()->t('Next'), '', ''],
|
2018-02-03 17:25:58 +00:00
|
|
|
'$calendar' => Temporal::getCalendarTable($y, $m, $links, ' eventcal'),
|
2018-01-05 00:42:48 +00:00
|
|
|
'$events' => $events,
|
2020-01-18 19:52:34 +00:00
|
|
|
"today" => DI::l10n()->t("today"),
|
|
|
|
"month" => DI::l10n()->t("month"),
|
|
|
|
"week" => DI::l10n()->t("week"),
|
|
|
|
"day" => DI::l10n()->t("day"),
|
|
|
|
"list" => DI::l10n()->t("list"),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2016-06-19 20:04:34 +00:00
|
|
|
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_GET['id'])) {
|
2022-04-10 11:03:24 +00:00
|
|
|
System::httpExit($o);
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2016-06-20 21:31:49 +00:00
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($mode == 'export') {
|
2019-07-16 01:46:55 +00:00
|
|
|
if (!$owner_uid) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('User not found'));
|
2016-06-20 21:31:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the export data by uid
|
2018-03-17 01:45:02 +00:00
|
|
|
$evexport = Event::exportListByUserId($owner_uid, $format);
|
2016-06-20 21:31:49 +00:00
|
|
|
|
2016-08-13 11:59:55 +00:00
|
|
|
if (!$evexport["success"]) {
|
2018-01-05 00:42:48 +00:00
|
|
|
if ($evexport["content"]) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('This calendar format is not supported'));
|
2018-01-05 00:42:48 +00:00
|
|
|
} else {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('No exportable data found'));
|
2018-01-05 00:42:48 +00:00
|
|
|
}
|
2016-06-20 21:31:49 +00:00
|
|
|
|
2016-08-13 11:59:55 +00:00
|
|
|
// If it the own calendar return to the events page
|
|
|
|
// otherwise to the profile calendar page
|
2019-07-16 01:46:55 +00:00
|
|
|
if (local_user() === $owner_uid) {
|
2016-08-13 11:59:55 +00:00
|
|
|
$return_path = "events";
|
2018-01-05 00:42:48 +00:00
|
|
|
} else {
|
|
|
|
$return_path = "cal/" . $nick;
|
|
|
|
}
|
2016-08-13 11:59:55 +00:00
|
|
|
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2016-06-20 21:31:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If nothing went wrong we can echo the export content
|
2016-08-13 11:59:55 +00:00
|
|
|
if ($evexport["success"]) {
|
2020-01-18 19:52:34 +00:00
|
|
|
header('content-disposition: attachment; filename="' . DI::l10n()->t('calendar') . '-' . $nick . '.' . $evexport["extension"] . '"');
|
2022-04-10 08:31:55 +00:00
|
|
|
System::httpExit($evexport["content"], Response::TYPE_BLANK, 'text/calendar');
|
2016-06-20 21:31:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|