]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Schedule.php
Using "post" when deleting, fixing deleting
[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 post(array $parameters = [])
36         {
37                 if (!local_user()) {
38                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
39                 }
40
41                 if (empty($_REQUEST['delete'])) {
42                         throw new HTTPException\BadRequestException();
43                 }
44                 self::deleteSchedule($_REQUEST['delete']);              
45         }
46
47         public static function content(array $parameters = [])
48         {
49                 if (!local_user()) {
50                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
51                 }
52
53                 $a = DI::app();
54
55                 $o = self::getTabsHTML($a, 'schedule', true, $a->user);
56
57                 $schedule = [];
58                 $delayed = DBA::select('delayed-post', [], ['uid' => local_user()]);
59                 while ($row = DBA::fetch($delayed)) {
60                         $parameter = Post\Delayed::getParametersForid($row['id']);
61                         if (empty($parameter)) {
62                                 continue;
63                         }
64                         $schedule[] = [
65                                 'id'           => $row['id'],
66                                 'scheduled_at' => $row['delayed'],
67                                 'content'      => BBCode::toPlaintext($parameter['item']['body'], false)
68                         ];
69                 }
70                 DBA::close($delayed);
71
72                 $tpl = Renderer::getMarkupTemplate('profile/schedule.tpl');
73                 $o .= Renderer::replaceMacros($tpl, [
74                         '$form_security_token' => BaseModule::getFormSecurityToken("profile_schedule"),
75                         '$baseurl'             => DI::baseUrl()->get(true),
76                         '$title'               => DI::l10n()->t('Scheduled Posts'),
77                         '$nickname'            => $parameters['nickname'] ?? '',
78                         '$scheduled_at'        => DI::l10n()->t('Scheduled'),
79                         '$content'             => DI::l10n()->t('Content'),
80                         '$delete'              => DI::l10n()->t('Remove post'),
81                         '$schedule'            => $schedule,
82                 ]);
83
84                 return $o;
85         }
86
87         private static function deleteSchedule($id)
88         {
89                 $condtion = ['id' => $id, 'uid' => local_user()];
90                 $post = DBA::selectFirst('delayed-post', ['id', 'wid'], $condtion);
91                 if (empty($post['id'])) {
92                         return;
93                 }
94                 
95                 DBA::delete('delayed-post', ['id' => $id, 'uid' => local_user()]);
96                 DBA::delete('workerqueue', ['id' => $post['wid']]);
97         }
98 }