]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Schedule.php
Scheduled posts are now listed and can be deleted
[friendica.git] / src / Module / Profile / Schedule.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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
33 class Schedule extends BaseProfile
34 {
35         public static function content(array $parameters = [])
36         {
37                 if (!local_user()) {
38                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
39                 }
40
41                 if (!empty($parameters['id'])) {
42                         self::deleteSchedule($parameters['id']);
43                 }
44
45                 $a = DI::app();
46
47                 $o = self::getTabsHTML($a, 'schedule', true, $a->user);
48
49                 $schedule = [];
50                 $delayed = DBA::select('delayed-post', [], ['uid' => local_user()]);
51                 while ($row = DBA::fetch($delayed)) {
52                         $parameter = Post\Delayed::getParametersForid($row['id']);
53                         if (empty($parameter)) {
54                                 continue;
55                         }
56                         $schedule[] = [
57                                 'id'           => $row['id'],
58                                 'scheduled_at' => $row['delayed'],
59                                 'content'      => BBCode::toPlaintext($parameter['item']['body'], false)
60                         ];
61                 }
62                 DBA::close($delayed);
63
64                 $tpl = Renderer::getMarkupTemplate('profile/schedule.tpl');
65                 $o .= Renderer::replaceMacros($tpl, [
66                         '$form_security_token' => BaseModule::getFormSecurityToken("profile_schedule"),
67                         '$baseurl'             => DI::baseUrl()->get(true),
68                         '$title'               => DI::l10n()->t('Scheduled Posts'),
69                         '$nickname'            => $parameters['nickname'] ?? '',
70                         '$scheduled_at'        => DI::l10n()->t('Scheduled'),
71                         '$content'             => DI::l10n()->t('Content'),
72                         '$delete'              => DI::l10n()->t('Remove post'),
73                         '$schedule'            => $schedule,
74                 ]);
75
76                 return $o;
77         }
78
79         private static function deleteSchedule($id)
80         {
81                 DBA::delete('delayed-post', ['id' => $id, 'uid' => local_user()]);
82         }
83 }