123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * GNU social - a federating social network
- *
- * ActivityPubPlugin implementation for GNU Social
- *
- * LICENCE: 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 <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package GNUsocial
- * @author Diogo Cordeiro <diogo@fc.up.pt>
- * @copyright 2018 Free Software Foundation http://fsf.org
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link https://www.gnu.org/software/social/
- */
- if (!defined('GNUSOCIAL')) {
- exit(1);
- }
- /**
- * Inbox Request Handler
- *
- * @category Plugin
- * @package GNUsocial
- * @author Diogo Cordeiro <diogo@fc.up.pt>
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://www.gnu.org/software/social/
- */
- class apActorOutboxAction extends ManagedAction
- {
- protected $needLogin = false;
- protected $canPost = true;
- /**
- * Handle the Outbox request
- *
- * @author Daniel Supernault <danielsupernault@gmail.com>
- */
- protected function handle()
- {
- try {
- $profile = Profile::getByID($this->trimmed('id'));
- $profile_id = $profile->getID();
- } catch (Exception $e) {
- ActivityPubReturn::error('Invalid Actor URI.', 404);
- }
- if (!$profile->isLocal()) {
- ActivityPubReturn::error("This is not a local user.", 403);
- }
- if (!isset($_GET["page"])) {
- $page = 0;
- } else {
- $page = intval($this->trimmed('page'));
- }
- if ($page < 0) {
- ActivityPubReturn::error('Invalid page number.');
- }
- $since = ($page - 1) * PROFILES_PER_MINILIST;
- $limit = (($page - 1) == 0 ? 1 : $page) * PROFILES_PER_MINILIST;
- /* Calculate total items */
- $total_notes = $profile->noticeCount();
- $total_pages = ceil($total_notes / PROFILES_PER_MINILIST);
- $res = [
- '@context' => [
- "https://www.w3.org/ns/activitystreams",
- "https://w3id.org/security/v1",
- ],
- 'id' => common_local_url('apActorOutbox', ['id' => $profile_id]).(($page != 0) ? '?page='.$page : ''),
- 'type' => ($page == 0 ? 'OrderedCollection' : 'OrderedCollectionPage'),
- 'totalItems' => $total_notes
- ];
- if ($page == 0) {
- $res['first'] = common_local_url('apActorOutbox', ['id' => $profile_id]).'?page=1';
- } else {
- $res['orderedItems'] = $this->generate_outbox($profile);
- $res['partOf'] = common_local_url('apActorOutbox', ['id' => $profile_id]);
- if ($page+1 < $total_pages) {
- $res['next'] = common_local_url('apActorOutbox', ['id' => $profile_id]).'page='.($page+1 == 1 ? 2 : $page+1);
- }
- if ($page > 1) {
- $res['prev'] = common_local_url('apActorOutbox', ['id' => $profile_id]).'?page='.($page-1 <= 0 ? 1 : $page-1);
- }
- }
- ActivityPubReturn::answer($res);
- }
- /**
- * Generates a list of people following given profile.
- *
- * @author Daniel Supernault <danielsupernault@gmail.com>
- * @param Profile $profile
- * @return Array of Notices
- */
- public function generate_outbox($profile)
- {
- /* Fetch Notices */
- $notices = [];
- $notice = $profile->getNotices();
- while ($notice->fetch()) {
- $note = $notice;
- // TODO: Handle other types
- if ($note->object_type == 'http://activitystrea.ms/schema/1.0/note') {
- $notices[] = Activitypub_create::create_to_array(
- ActivityPubPlugin::actor_uri($note->getProfile()),
- Activitypub_notice::notice_to_array($note)
- );
- }
- }
- return $notices;
- }
- }
|