2011-02-16 04:25:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Class for serializing Activity Streams in JSON
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* 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 Feed
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2017-07-10 13:26:01 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2011-02-16 04:25:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A class for generating JSON documents that represent an Activity Streams
|
|
|
|
*
|
|
|
|
* @category Feed
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2011-08-25 18:00:20 +01:00
|
|
|
class ActivityStreamJSONDocument extends JSONActivityCollection
|
2011-02-16 04:25:39 +00:00
|
|
|
{
|
2011-08-25 18:00:20 +01:00
|
|
|
// Note: Lot of AS folks think the content type should be:
|
|
|
|
// 'application/stream+json; charset=utf-8', but this is more
|
|
|
|
// useful at the moment, because some programs actually understand
|
|
|
|
// it.
|
|
|
|
const CONTENT_TYPE = 'application/json; charset=utf-8';
|
2011-02-17 00:21:46 +00:00
|
|
|
|
2011-02-16 04:25:39 +00:00
|
|
|
/* Top level array representing the document */
|
|
|
|
protected $doc = array();
|
|
|
|
|
|
|
|
/* The current authenticated user */
|
2011-08-25 18:00:20 +01:00
|
|
|
protected $cur;
|
2014-07-28 09:57:45 +01:00
|
|
|
protected $scoped = null;
|
2011-08-25 18:00:20 +01:00
|
|
|
|
|
|
|
/* Title of the document */
|
|
|
|
protected $title;
|
|
|
|
|
|
|
|
/* Links associated with this document */
|
|
|
|
protected $links;
|
|
|
|
|
|
|
|
/* Count of items in this document */
|
|
|
|
// XXX This is cryptically referred to in the spec: "The Stream serialization MAY contain a count property."
|
|
|
|
protected $count;
|
2011-02-16 04:25:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param User $cur the current authenticated user
|
|
|
|
*/
|
|
|
|
|
2017-07-10 13:26:01 +01:00
|
|
|
function __construct($cur = null, $title = null, array $items=[], $links = null, $url = null)
|
2011-02-16 04:25:39 +00:00
|
|
|
{
|
2011-08-25 18:00:20 +01:00
|
|
|
parent::__construct($items, $url);
|
2011-02-17 00:21:46 +00:00
|
|
|
|
2014-07-28 09:57:45 +01:00
|
|
|
$this->cur = $cur ?: common_current_user();
|
|
|
|
$this->scoped = !is_null($this->cur) ? $this->cur->getProfile() : null;
|
2011-02-16 04:25:39 +00:00
|
|
|
|
2011-02-17 00:21:46 +00:00
|
|
|
/* Title of the JSON document */
|
2011-08-25 18:00:20 +01:00
|
|
|
$this->title = $title;
|
2011-02-17 00:21:46 +00:00
|
|
|
|
2011-08-25 18:00:20 +01:00
|
|
|
if (!empty($items)) {
|
|
|
|
$this->count = count($this->items);
|
|
|
|
}
|
2011-02-17 00:21:46 +00:00
|
|
|
|
|
|
|
/* Array of links associated with the document */
|
2011-08-25 18:00:20 +01:00
|
|
|
$this->links = empty($links) ? array() : $items;
|
2011-02-17 00:21:46 +00:00
|
|
|
|
2011-08-25 18:00:20 +01:00
|
|
|
/* URL of a document, this document? containing a list of all the items in the stream */
|
|
|
|
if (!empty($this->url)) {
|
|
|
|
$this->url = $this->url;
|
|
|
|
}
|
2011-02-17 00:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the title of the document
|
|
|
|
*
|
|
|
|
* @param String $title the title
|
|
|
|
*/
|
2011-02-17 02:55:13 +00:00
|
|
|
|
2011-02-17 00:21:46 +00:00
|
|
|
function setTitle($title)
|
|
|
|
{
|
2011-08-25 18:00:20 +01:00
|
|
|
$this->title = $title;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setUrl($url)
|
|
|
|
{
|
|
|
|
$this->url = $url;
|
2011-02-16 04:25:39 +00:00
|
|
|
}
|
|
|
|
|
2011-08-25 18:00:20 +01:00
|
|
|
|
2011-02-16 04:25:39 +00:00
|
|
|
/**
|
|
|
|
* Add more than one Item to the document
|
|
|
|
*
|
|
|
|
* @param mixed $notices an array of Notice objects or handle
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
function addItemsFromNotices($notices)
|
|
|
|
{
|
|
|
|
if (is_array($notices)) {
|
|
|
|
foreach ($notices as $notice) {
|
|
|
|
$this->addItemFromNotice($notice);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($notices->fetch()) {
|
|
|
|
$this->addItemFromNotice($notices);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a single Notice to the document
|
|
|
|
*
|
|
|
|
* @param Notice $notice a Notice to add
|
|
|
|
*/
|
|
|
|
|
|
|
|
function addItemFromNotice($notice)
|
|
|
|
{
|
2014-07-28 09:57:45 +01:00
|
|
|
$act = $notice->asActivity($this->scoped);
|
|
|
|
$act->extra[] = $notice->noticeInfo($this->scoped);
|
2011-08-25 18:00:20 +01:00
|
|
|
array_push($this->items, $act->asArray());
|
|
|
|
$this->count++;
|
2011-02-16 04:25:39 +00:00
|
|
|
}
|
|
|
|
|
2011-02-17 00:21:46 +00:00
|
|
|
/**
|
|
|
|
* Add a link to the JSON document
|
|
|
|
*
|
|
|
|
* @param string $url the URL for the link
|
|
|
|
* @param string $rel the link relationship
|
|
|
|
*/
|
|
|
|
function addLink($url = null, $rel = null, $mediaType = null)
|
|
|
|
{
|
|
|
|
$link = new ActivityStreamsLink($url, $rel, $mediaType);
|
2011-08-25 18:00:20 +01:00
|
|
|
array_push($this->links, $link->asArray());
|
2011-02-17 00:21:46 +00:00
|
|
|
}
|
|
|
|
|
2011-02-16 04:25:39 +00:00
|
|
|
/*
|
|
|
|
* Return the entire document as a big string of JSON
|
|
|
|
*
|
|
|
|
* @return string encoded JSON output
|
|
|
|
*/
|
|
|
|
function asString()
|
|
|
|
{
|
2013-11-01 12:28:52 +00:00
|
|
|
$this->doc['generator'] = 'GNU social ' . GNUSOCIAL_VERSION; // extension
|
2011-08-25 18:00:20 +01:00
|
|
|
$this->doc['title'] = $this->title;
|
|
|
|
$this->doc['url'] = $this->url;
|
2011-12-31 10:01:51 +00:00
|
|
|
$this->doc['totalItems'] = $this->count;
|
2011-08-25 18:00:20 +01:00
|
|
|
$this->doc['items'] = $this->items;
|
|
|
|
$this->doc['links'] = $this->links; // extension
|
|
|
|
return json_encode(array_filter($this->doc)); // filter out empty elements
|
2011-02-16 04:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|