]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Schedule.php
0e1f92018e394e7f5b197c2316b54507adcffd55
[friendica.git] / src / Module / Profile / Schedule.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Profile;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Core\Renderer;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Post;
30 use Friendica\Module\BaseProfile;
31 use Friendica\Network\HTTPException;
32 use Friendica\Util\DateTimeFormat;
33
34 class Schedule extends BaseProfile
35 {
36         protected function post(array $request = [])
37         {
38                 if (!DI::userSession()->getLocalUserId()) {
39                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
40                 }
41
42                 if (empty($_REQUEST['delete'])) {
43                         throw new HTTPException\BadRequestException();
44                 }
45
46                 if (!DBA::exists('delayed-post', ['id' => $_REQUEST['delete'], 'uid' => DI::userSession()->getLocalUserId()])) {
47                         throw new HTTPException\NotFoundException();
48                 }
49
50                 Post\Delayed::deleteById($_REQUEST['delete']);
51         }
52
53         protected function content(array $request = []): string
54         {
55                 if (!DI::userSession()->getLocalUserId()) {
56                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
57                 }
58
59                 $a = DI::app();
60
61                 $o = self::getTabsHTML($a, 'schedule', true, $a->getLoggedInUserNickname(), false);
62
63                 $schedule = [];
64                 $delayed = DBA::select('delayed-post', [], ['uid' => DI::userSession()->getLocalUserId()]);
65                 while ($row = DBA::fetch($delayed)) {
66                         $parameter = Post\Delayed::getParametersForid($row['id']);
67                         if (empty($parameter)) {
68                                 continue;
69                         }
70                         $schedule[] = [
71                                 'id'           => $row['id'],
72                                 'scheduled_at' => DateTimeFormat::local($row['delayed']),
73                                 'content'      => BBCode::toPlaintext($parameter['item']['body'], false)
74                         ];
75                 }
76                 DBA::close($delayed);
77
78                 $tpl = Renderer::getMarkupTemplate('profile/schedule.tpl');
79                 $o .= Renderer::replaceMacros($tpl, [
80                         '$form_security_token' => BaseModule::getFormSecurityToken("profile_schedule"),
81                         '$baseurl'             => DI::baseUrl()->get(true),
82                         '$title'               => DI::l10n()->t('Scheduled Posts'),
83                         '$nickname'            => $this->parameters['nickname'] ?? '',
84                         '$scheduled_at'        => DI::l10n()->t('Scheduled'),
85                         '$content'             => DI::l10n()->t('Content'),
86                         '$delete'              => DI::l10n()->t('Remove post'),
87                         '$schedule'            => $schedule,
88                 ]);
89
90                 return $o;
91         }
92 }