[XML/HTML Outputter] General improvements and refactoring as well as some bug fixes
This commit is contained in:
parent
c03ed457a6
commit
1536d3ef29
|
@ -31,7 +31,9 @@
|
|||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* We don't have a rate limit, but some clients check this method.
|
||||
|
@ -47,62 +49,6 @@ if (!defined('GNUSOCIAL')) { exit(1); }
|
|||
*/
|
||||
class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
|
||||
{
|
||||
/**
|
||||
* Handle the request
|
||||
*
|
||||
* Return some Twitter-ish data about API limits
|
||||
*
|
||||
* @param array $args $_REQUEST data (unused)
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function handle()
|
||||
{
|
||||
parent::handle();
|
||||
|
||||
if (!in_array($this->format, array('xml', 'json'))) {
|
||||
$this->clientError(
|
||||
// TRANS: Client error displayed when coming across a non-supported API method.
|
||||
_('API method not found.'),
|
||||
404,
|
||||
$this->format
|
||||
);
|
||||
}
|
||||
|
||||
$reset = new DateTime();
|
||||
$reset->modify('+1 hour');
|
||||
|
||||
$this->initDocument($this->format);
|
||||
|
||||
if ($this->format == 'xml') {
|
||||
$this->elementStart('hash');
|
||||
$this->element('remaining-hits', array('type' => 'integer'), 150);
|
||||
$this->element('hourly-limit', array('type' => 'integer'), 150);
|
||||
$this->element(
|
||||
'reset-time', array('type' => 'datetime'),
|
||||
common_date_iso8601($reset->format('r'))
|
||||
);
|
||||
$this->element(
|
||||
'reset_time_in_seconds',
|
||||
array('type' => 'integer'),
|
||||
strtotime('+1 hour')
|
||||
);
|
||||
$this->elementEnd('hash');
|
||||
} elseif ($this->format == 'json') {
|
||||
$out = array(
|
||||
'reset_time_in_seconds' => strtotime('+1 hour'),
|
||||
'remaining_hits' => 150,
|
||||
'hourly_limit' => 150,
|
||||
'reset_time' => common_date_rfc2822(
|
||||
$reset->format('r')
|
||||
)
|
||||
);
|
||||
print json_encode($out);
|
||||
}
|
||||
|
||||
$this->endDocument($this->format);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return true if read only.
|
||||
*
|
||||
|
@ -112,8 +58,64 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
|
|||
*
|
||||
* @return boolean is read only action?
|
||||
*/
|
||||
function isReadOnly($args)
|
||||
public function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the request
|
||||
*
|
||||
* Return some Twitter-ish data about API limits
|
||||
*
|
||||
* @return void
|
||||
* @throws ClientException
|
||||
*/
|
||||
protected function handle()
|
||||
{
|
||||
parent::handle();
|
||||
|
||||
if (!in_array($this->format, ['xml', 'json'])) {
|
||||
$this->clientError(
|
||||
// TRANS: Client error displayed when coming across a non-supported API method.
|
||||
_('API method not found.'),
|
||||
404,
|
||||
$this->format
|
||||
);
|
||||
}
|
||||
|
||||
$reset = new DateTime();
|
||||
$reset->modify('+1 hour');
|
||||
|
||||
$this->initDocument($this->format);
|
||||
|
||||
if ($this->format == 'xml') {
|
||||
$this->elementStart('hash');
|
||||
$this->element('remaining-hits', ['type' => 'integer'], "150");
|
||||
$this->element('hourly-limit', ['type' => 'integer'], "150");
|
||||
$this->element(
|
||||
'reset-time',
|
||||
['type' => 'datetime'],
|
||||
common_date_iso8601($reset->format('r'))
|
||||
);
|
||||
$this->element(
|
||||
'reset_time_in_seconds',
|
||||
['type' => 'integer'],
|
||||
strtotime('+1 hour')
|
||||
);
|
||||
$this->elementEnd('hash');
|
||||
} elseif ($this->format == 'json') {
|
||||
$out = [
|
||||
'reset_time_in_seconds' => strtotime('+1 hour'),
|
||||
'remaining_hits' => 150,
|
||||
'hourly_limit' => 150,
|
||||
'reset_time' => common_date_rfc2822(
|
||||
$reset->format('r')
|
||||
)
|
||||
];
|
||||
print json_encode($out);
|
||||
}
|
||||
|
||||
$this->endDocument($this->format);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,25 +49,36 @@ class NetworkpublicAction extends SitestreamAction
|
|||
// Network public tag cloud?
|
||||
}
|
||||
|
||||
/**
|
||||
* Output <head> elements for RSS and Atom feeds
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function getFeeds()
|
||||
{
|
||||
return array(new Feed(Feed::JSON,
|
||||
common_local_url('ApiTimelineNetworkPublic',
|
||||
array('format' => 'as')),
|
||||
// TRANS: Link description for the _global_ network public timeline feed.
|
||||
_('Network Public Timeline Feed (Activity Streams JSON)')),
|
||||
new Feed(Feed::RSS1, common_local_url('publicrss'),
|
||||
// TRANS: Link description for the _global_ network public timeline feed.
|
||||
_('Network Public Timeline Feed (RSS 1.0)')),
|
||||
new Feed(Feed::RSS2,
|
||||
common_local_url('ApiTimelineNetworkPublic',
|
||||
array('format' => 'rss')),
|
||||
// TRANS: Link description for the _global_ network public timeline feed.
|
||||
_('Network Public Timeline Feed (RSS 2.0)')),
|
||||
new Feed(Feed::ATOM,
|
||||
common_local_url('ApiTimelineNetworkPublic',
|
||||
array('format' => 'atom')),
|
||||
// TRANS: Link description for the _global_ network public timeline feed.
|
||||
_('Network Public Timeline Feed (Atom)')));
|
||||
return [
|
||||
new Feed(Feed::ATOM,
|
||||
common_local_url('ApiTimelinePublic',
|
||||
array('format' => 'atom')),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (Atom)')
|
||||
),
|
||||
new Feed(Feed::JSON,
|
||||
common_local_url('ApiTimelinePublic',
|
||||
array('format' => 'as')),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (Activity Streams JSON)')
|
||||
),
|
||||
new Feed(Feed::RSS1, common_local_url('publicrss'),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (RSS 1.0)')
|
||||
),
|
||||
new Feed(Feed::RSS2,
|
||||
common_local_url('ApiTimelinePublic',
|
||||
array('format' => 'rss')),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (RSS 2.0)')
|
||||
),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@ class PublicAction extends SitestreamAction
|
|||
/**
|
||||
* Output <head> elements for RSS and Atom feeds
|
||||
*
|
||||
* @return void
|
||||
* @return array
|
||||
*/
|
||||
function getFeeds()
|
||||
{
|
||||
|
|
1652
lib/action.php
1652
lib/action.php
File diff suppressed because it is too large
Load Diff
|
@ -28,9 +28,11 @@
|
|||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
require_once(INSTALLDIR.'/lib/activitystreamjsondocument.php');
|
||||
require_once(INSTALLDIR . '/lib/activitystreamjsondocument.php');
|
||||
|
||||
/**
|
||||
* A noun-ish thing in the activity universe
|
||||
|
@ -51,47 +53,47 @@ require_once(INSTALLDIR.'/lib/activitystreamjsondocument.php');
|
|||
*/
|
||||
class ActivityObject
|
||||
{
|
||||
const ARTICLE = 'http://activitystrea.ms/schema/1.0/article';
|
||||
const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
|
||||
const NOTE = 'http://activitystrea.ms/schema/1.0/note';
|
||||
const STATUS = 'http://activitystrea.ms/schema/1.0/status';
|
||||
const FILE = 'http://activitystrea.ms/schema/1.0/file';
|
||||
const PHOTO = 'http://activitystrea.ms/schema/1.0/photo';
|
||||
const ALBUM = 'http://activitystrea.ms/schema/1.0/photo-album';
|
||||
const PLAYLIST = 'http://activitystrea.ms/schema/1.0/playlist';
|
||||
const VIDEO = 'http://activitystrea.ms/schema/1.0/video';
|
||||
const AUDIO = 'http://activitystrea.ms/schema/1.0/audio';
|
||||
const BOOKMARK = 'http://activitystrea.ms/schema/1.0/bookmark';
|
||||
const PERSON = 'http://activitystrea.ms/schema/1.0/person';
|
||||
const GROUP = 'http://activitystrea.ms/schema/1.0/group';
|
||||
const _LIST = 'http://activitystrea.ms/schema/1.0/list'; // LIST is reserved
|
||||
const PLACE = 'http://activitystrea.ms/schema/1.0/place';
|
||||
const COMMENT = 'http://activitystrea.ms/schema/1.0/comment';
|
||||
const ARTICLE = 'http://activitystrea.ms/schema/1.0/article';
|
||||
const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
|
||||
const NOTE = 'http://activitystrea.ms/schema/1.0/note';
|
||||
const STATUS = 'http://activitystrea.ms/schema/1.0/status';
|
||||
const FILE = 'http://activitystrea.ms/schema/1.0/file';
|
||||
const PHOTO = 'http://activitystrea.ms/schema/1.0/photo';
|
||||
const ALBUM = 'http://activitystrea.ms/schema/1.0/photo-album';
|
||||
const PLAYLIST = 'http://activitystrea.ms/schema/1.0/playlist';
|
||||
const VIDEO = 'http://activitystrea.ms/schema/1.0/video';
|
||||
const AUDIO = 'http://activitystrea.ms/schema/1.0/audio';
|
||||
const BOOKMARK = 'http://activitystrea.ms/schema/1.0/bookmark';
|
||||
const PERSON = 'http://activitystrea.ms/schema/1.0/person';
|
||||
const GROUP = 'http://activitystrea.ms/schema/1.0/group';
|
||||
const _LIST = 'http://activitystrea.ms/schema/1.0/list'; // LIST is reserved
|
||||
const PLACE = 'http://activitystrea.ms/schema/1.0/place';
|
||||
const COMMENT = 'http://activitystrea.ms/schema/1.0/comment';
|
||||
// ^^^^^^^^^^ tea!
|
||||
const ACTIVITY = 'http://activitystrea.ms/schema/1.0/activity';
|
||||
const SERVICE = 'http://activitystrea.ms/schema/1.0/service';
|
||||
const IMAGE = 'http://activitystrea.ms/schema/1.0/image';
|
||||
const COLLECTION = 'http://activitystrea.ms/schema/1.0/collection';
|
||||
const ACTIVITY = 'http://activitystrea.ms/schema/1.0/activity';
|
||||
const SERVICE = 'http://activitystrea.ms/schema/1.0/service';
|
||||
const IMAGE = 'http://activitystrea.ms/schema/1.0/image';
|
||||
const COLLECTION = 'http://activitystrea.ms/schema/1.0/collection';
|
||||
const APPLICATION = 'http://activitystrea.ms/schema/1.0/application';
|
||||
|
||||
// Atom elements we snarf
|
||||
|
||||
const TITLE = 'title';
|
||||
const TITLE = 'title';
|
||||
const SUMMARY = 'summary';
|
||||
const ID = 'id';
|
||||
const SOURCE = 'source';
|
||||
const ID = 'id';
|
||||
const SOURCE = 'source';
|
||||
|
||||
const NAME = 'name';
|
||||
const URI = 'uri';
|
||||
const NAME = 'name';
|
||||
const URI = 'uri';
|
||||
const EMAIL = 'email';
|
||||
|
||||
const POSTEROUS = 'http://posterous.com/help/rss/1.0';
|
||||
const AUTHOR = 'author';
|
||||
const USERIMAGE = 'userImage';
|
||||
const PROFILEURL = 'profileUrl';
|
||||
const NICKNAME = 'nickName';
|
||||
const POSTEROUS = 'http://posterous.com/help/rss/1.0';
|
||||
const AUTHOR = 'author';
|
||||
const USERIMAGE = 'userImage';
|
||||
const PROFILEURL = 'profileUrl';
|
||||
const NICKNAME = 'nickName';
|
||||
const DISPLAYNAME = 'displayName';
|
||||
|
||||
const MEDIA_DESCRIPTION = 'description';
|
||||
public $element;
|
||||
public $type;
|
||||
public $id;
|
||||
|
@ -99,21 +101,19 @@ class ActivityObject
|
|||
public $summary;
|
||||
public $content;
|
||||
public $owner;
|
||||
public $link;
|
||||
public $selfLink; // think APP (Atom Publishing Protocol)
|
||||
public $link; // think APP (Atom Publishing Protocol)
|
||||
public $selfLink;
|
||||
public $source;
|
||||
public $avatarLinks = array();
|
||||
public $avatarLinks = [];
|
||||
public $geopoint;
|
||||
public $poco;
|
||||
public $displayName;
|
||||
|
||||
// @todo move this stuff to it's own PHOTO activity object
|
||||
const MEDIA_DESCRIPTION = 'description';
|
||||
|
||||
public $displayName;
|
||||
public $thumbnail;
|
||||
public $largerImage;
|
||||
public $description;
|
||||
public $extra = array();
|
||||
public $extra = [];
|
||||
|
||||
public $stream;
|
||||
|
||||
|
@ -126,7 +126,7 @@ class ActivityObject
|
|||
*
|
||||
* @param DOMElement $element DOM thing to turn into an Activity thing
|
||||
*/
|
||||
function __construct($element = null)
|
||||
public function __construct($element = null)
|
||||
{
|
||||
if (empty($element)) {
|
||||
return;
|
||||
|
@ -142,7 +142,7 @@ class ActivityObject
|
|||
|
||||
if ($element->tagName == 'author') {
|
||||
$this->_fromAuthor($element);
|
||||
} else if ($element->tagName == 'item') {
|
||||
} elseif ($element->tagName == 'item') {
|
||||
$this->_fromRssItem($element);
|
||||
} else {
|
||||
$this->_fromAtomEntry($element);
|
||||
|
@ -168,8 +168,7 @@ class ActivityObject
|
|||
}
|
||||
|
||||
if ($this->type == self::PHOTO) {
|
||||
|
||||
$this->thumbnail = ActivityUtils::getLink($element, 'preview');
|
||||
$this->thumbnail = ActivityUtils::getLink($element, 'preview');
|
||||
$this->largerImage = ActivityUtils::getLink($element, 'enclosure');
|
||||
|
||||
$this->description = ActivityUtils::childContent(
|
||||
|
@ -184,11 +183,18 @@ class ActivityObject
|
|||
}
|
||||
}
|
||||
|
||||
private function _childContent($element, $tag, $namespace = ActivityUtils::ATOM)
|
||||
{
|
||||
return ActivityUtils::childContent($element, $tag, $namespace);
|
||||
}
|
||||
|
||||
private function _fromAuthor($element)
|
||||
{
|
||||
$this->type = $this->_childContent($element,
|
||||
Activity::OBJECTTYPE,
|
||||
Activity::SPEC);
|
||||
$this->type = $this->_childContent(
|
||||
$element,
|
||||
Activity::OBJECTTYPE,
|
||||
Activity::SPEC
|
||||
);
|
||||
|
||||
if (empty($this->type)) {
|
||||
$this->type = self::PERSON; // XXX: is this fair?
|
||||
|
@ -231,7 +237,7 @@ class ActivityObject
|
|||
$email = $this->_childContent($element, self::EMAIL);
|
||||
if (!empty($email)) {
|
||||
// XXX: acct: ?
|
||||
$this->id = 'mailto:'.$email;
|
||||
$this->id = 'mailto:' . $email;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -244,50 +250,8 @@ class ActivityObject
|
|||
}
|
||||
}
|
||||
|
||||
private function _fromAtomEntry($element)
|
||||
{
|
||||
$this->type = $this->_childContent($element, Activity::OBJECTTYPE,
|
||||
Activity::SPEC);
|
||||
|
||||
if (empty($this->type)) {
|
||||
$this->type = ActivityObject::NOTE;
|
||||
}
|
||||
|
||||
$this->summary = ActivityUtils::childHtmlContent($element, self::SUMMARY);
|
||||
$this->content = ActivityUtils::getContent($element);
|
||||
|
||||
// We don't like HTML in our titles, although it's technically allowed
|
||||
$this->title = common_strip_html(ActivityUtils::childHtmlContent($element, self::TITLE));
|
||||
|
||||
$this->source = $this->_getSource($element);
|
||||
|
||||
$this->link = ActivityUtils::getPermalink($element);
|
||||
$this->selfLink = ActivityUtils::getSelfLink($element);
|
||||
|
||||
$this->id = $this->_childContent($element, self::ID);
|
||||
|
||||
if (empty($this->id) && !empty($this->link)) { // fallback if there's no ID
|
||||
$this->id = $this->link;
|
||||
}
|
||||
|
||||
$els = $element->childNodes;
|
||||
$out = array();
|
||||
|
||||
for ($i = 0; $i < $els->length; $i++) {
|
||||
$link = $els->item($i);
|
||||
if ($link->localName == ActivityUtils::LINK && $link->namespaceURI == ActivityUtils::ATOM) {
|
||||
$attrs = array();
|
||||
foreach ($link->attributes as $attrName=>$attrNode) {
|
||||
$attrs[$attrName] = $attrNode->nodeValue;
|
||||
}
|
||||
$this->extra[] = [$link->localName,
|
||||
$attrs,
|
||||
$link->nodeValue];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// @todo FIXME: rationalize with Activity::_fromRssItem()
|
||||
|
||||
private function _fromRssItem($item)
|
||||
{
|
||||
if (empty($this->type)) {
|
||||
|
@ -321,6 +285,67 @@ class ActivityObject
|
|||
}
|
||||
}
|
||||
|
||||
private function _fromAtomEntry($element)
|
||||
{
|
||||
$this->type = $this->_childContent(
|
||||
$element,
|
||||
Activity::OBJECTTYPE,
|
||||
Activity::SPEC
|
||||
);
|
||||
|
||||
if (empty($this->type)) {
|
||||
$this->type = ActivityObject::NOTE;
|
||||
}
|
||||
|
||||
$this->summary = ActivityUtils::childHtmlContent($element, self::SUMMARY);
|
||||
$this->content = ActivityUtils::getContent($element);
|
||||
|
||||
// We don't like HTML in our titles, although it's technically allowed
|
||||
$this->title = common_strip_html(ActivityUtils::childHtmlContent($element, self::TITLE));
|
||||
|
||||
$this->source = $this->_getSource($element);
|
||||
|
||||
$this->link = ActivityUtils::getPermalink($element);
|
||||
$this->selfLink = ActivityUtils::getSelfLink($element);
|
||||
|
||||
$this->id = $this->_childContent($element, self::ID);
|
||||
|
||||
if (empty($this->id) && !empty($this->link)) { // fallback if there's no ID
|
||||
$this->id = $this->link;
|
||||
}
|
||||
|
||||
$els = $element->childNodes;
|
||||
|
||||
for ($i = 0; $i < $els->length; $i++) {
|
||||
$link = $els->item($i);
|
||||
if ($link->localName == ActivityUtils::LINK && $link->namespaceURI == ActivityUtils::ATOM) {
|
||||
$attrs = [];
|
||||
foreach ($link->attributes as $attrName => $attrNode) {
|
||||
$attrs[$attrName] = $attrNode->nodeValue;
|
||||
}
|
||||
$this->extra[] = [$link->localName,
|
||||
$attrs,
|
||||
$link->nodeValue];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function _getSource($element)
|
||||
{
|
||||
$sourceEl = ActivityUtils::child($element, 'source');
|
||||
|
||||
if (empty($sourceEl)) {
|
||||
return null;
|
||||
} else {
|
||||
$href = ActivityUtils::getLink($sourceEl, 'self');
|
||||
if (!empty($href)) {
|
||||
return $href;
|
||||
} else {
|
||||
return ActivityUtils::childContent($sourceEl, 'id');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static function fromRssAuthor($el)
|
||||
{
|
||||
$text = $el->textContent;
|
||||
|
@ -328,10 +353,10 @@ class ActivityObject
|
|||
if (preg_match('/^(.*?) \((.*)\)$/', $text, $match)) {
|
||||
$email = $match[1];
|
||||
$name = $match[2];
|
||||
} else if (preg_match('/^(.*?) <(.*)>$/', $text, $match)) {
|
||||
} elseif (preg_match('/^(.*?) <(.*)>$/', $text, $match)) {
|
||||
$name = $match[1];
|
||||
$email = $match[2];
|
||||
} else if (preg_match('/.*@.*/', $text)) {
|
||||
} elseif (preg_match('/.*@.*/', $text)) {
|
||||
$email = $text;
|
||||
$name = null;
|
||||
} else {
|
||||
|
@ -345,11 +370,11 @@ class ActivityObject
|
|||
|
||||
$obj->element = $el;
|
||||
|
||||
$obj->type = ActivityObject::PERSON;
|
||||
$obj->type = ActivityObject::PERSON;
|
||||
$obj->title = $name;
|
||||
|
||||
if (!empty($email)) {
|
||||
$obj->id = 'mailto:'.$email;
|
||||
$obj->id = 'mailto:' . $email;
|
||||
}
|
||||
|
||||
return $obj;
|
||||
|
@ -366,7 +391,7 @@ class ActivityObject
|
|||
$obj->element = $el;
|
||||
|
||||
$obj->title = $text;
|
||||
$obj->type = ActivityObject::PERSON;
|
||||
$obj->type = ActivityObject::PERSON;
|
||||
|
||||
return $obj;
|
||||
}
|
||||
|
@ -380,8 +405,8 @@ class ActivityObject
|
|||
$obj->type = ActivityObject::PERSON; // @fixme guess better
|
||||
|
||||
$obj->title = ActivityUtils::childContent($el, ActivityObject::TITLE, Activity::RSS);
|
||||
$obj->link = ActivityUtils::childContent($el, ActivityUtils::LINK, Activity::RSS);
|
||||
$obj->id = ActivityUtils::getLink($el, Activity::SELF);
|
||||
$obj->link = ActivityUtils::childContent($el, ActivityUtils::LINK, Activity::RSS);
|
||||
$obj->id = ActivityUtils::getLink($el, Activity::SELF);
|
||||
|
||||
if (empty($obj->id)) {
|
||||
$obj->id = $obj->link;
|
||||
|
@ -405,6 +430,8 @@ class ActivityObject
|
|||
return $obj;
|
||||
}
|
||||
|
||||
// Try to get a unique id for the source feed
|
||||
|
||||
public static function fromPosterousAuthor($el)
|
||||
{
|
||||
$obj = new ActivityObject();
|
||||
|
@ -420,93 +447,74 @@ class ActivityObject
|
|||
}
|
||||
|
||||
$obj->link = ActivityUtils::childContent($el, self::PROFILEURL, self::POSTEROUS);
|
||||
$obj->id = $obj->link;
|
||||
$obj->id = $obj->link;
|
||||
|
||||
$obj->poco = new PoCo();
|
||||
|
||||
$obj->poco->preferredUsername = ActivityUtils::childContent($el, self::NICKNAME, self::POSTEROUS);
|
||||
$obj->poco->displayName = ActivityUtils::childContent($el, self::DISPLAYNAME, self::POSTEROUS);
|
||||
$obj->poco->displayName = ActivityUtils::childContent($el, self::DISPLAYNAME, self::POSTEROUS);
|
||||
|
||||
$obj->title = $obj->poco->displayName;
|
||||
|
||||
return $obj;
|
||||
}
|
||||
|
||||
private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
|
||||
{
|
||||
return ActivityUtils::childContent($element, $tag, $namespace);
|
||||
}
|
||||
|
||||
// Try to get a unique id for the source feed
|
||||
|
||||
private function _getSource($element)
|
||||
{
|
||||
$sourceEl = ActivityUtils::child($element, 'source');
|
||||
|
||||
if (empty($sourceEl)) {
|
||||
return null;
|
||||
} else {
|
||||
$href = ActivityUtils::getLink($sourceEl, 'self');
|
||||
if (!empty($href)) {
|
||||
return $href;
|
||||
} else {
|
||||
return ActivityUtils::childContent($sourceEl, 'id');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static function fromGroup(User_group $group)
|
||||
public static function fromGroup(User_group $group)
|
||||
{
|
||||
$object = new ActivityObject();
|
||||
|
||||
if (Event::handle('StartActivityObjectFromGroup', array($group, &$object))) {
|
||||
if (Event::handle('StartActivityObjectFromGroup', [$group, &$object])) {
|
||||
$object->type = ActivityObject::GROUP;
|
||||
$object->id = $group->getUri();
|
||||
$object->title = $group->getBestName();
|
||||
$object->link = $group->getUri();
|
||||
|
||||
$object->type = ActivityObject::GROUP;
|
||||
$object->id = $group->getUri();
|
||||
$object->title = $group->getBestName();
|
||||
$object->link = $group->getUri();
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename(
|
||||
$group->homepage_logo,
|
||||
AVATAR_PROFILE_SIZE
|
||||
);
|
||||
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename($group->homepage_logo,
|
||||
AVATAR_PROFILE_SIZE);
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename(
|
||||
$group->stream_logo,
|
||||
AVATAR_STREAM_SIZE
|
||||
);
|
||||
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename($group->stream_logo,
|
||||
AVATAR_STREAM_SIZE);
|
||||
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename($group->mini_logo,
|
||||
AVATAR_MINI_SIZE);
|
||||
$object->avatarLinks[] = AvatarLink::fromFilename(
|
||||
$group->mini_logo,
|
||||
AVATAR_MINI_SIZE
|
||||
);
|
||||
|
||||
$object->poco = PoCo::fromGroup($group);
|
||||
Event::handle('EndActivityObjectFromGroup', array($group, &$object));
|
||||
Event::handle('EndActivityObjectFromGroup', [$group, &$object]);
|
||||
}
|
||||
|
||||
return $object;
|
||||
}
|
||||
|
||||
static function fromPeopletag($ptag)
|
||||
public static function fromPeopletag($ptag)
|
||||
{
|
||||
$object = new ActivityObject();
|
||||
if (Event::handle('StartActivityObjectFromPeopletag', array($ptag, &$object))) {
|
||||
$object->type = ActivityObject::_LIST;
|
||||
if (Event::handle('StartActivityObjectFromPeopletag', [$ptag, &$object])) {
|
||||
$object->type = ActivityObject::_LIST;
|
||||
|
||||
$object->id = $ptag->getUri();
|
||||
$object->title = $ptag->tag;
|
||||
$object->id = $ptag->getUri();
|
||||
$object->title = $ptag->tag;
|
||||
$object->summary = $ptag->description;
|
||||
$object->link = $ptag->homeUrl();
|
||||
$object->owner = Profile::getKV('id', $ptag->tagger);
|
||||
$object->poco = PoCo::fromProfile($object->owner);
|
||||
Event::handle('EndActivityObjectFromPeopletag', array($ptag, &$object));
|
||||
$object->link = $ptag->homeUrl();
|
||||
$object->owner = Profile::getKV('id', $ptag->tagger);
|
||||
$object->poco = PoCo::fromProfile($object->owner);
|
||||
Event::handle('EndActivityObjectFromPeopletag', [$ptag, &$object]);
|
||||
}
|
||||
return $object;
|
||||
}
|
||||
|
||||
static function fromFile(File $file)
|
||||
public static function fromFile(File $file)
|
||||
{
|
||||
$object = new ActivityObject();
|
||||
|
||||
if (Event::handle('StartActivityObjectFromFile', array($file, &$object))) {
|
||||
|
||||
if (Event::handle('StartActivityObjectFromFile', [$file, &$object])) {
|
||||
$object->type = self::mimeTypeToObjectType($file->mimetype);
|
||||
$object->id = TagURI::mint(sprintf("file:%d", $file->id));
|
||||
$object->id = TagURI::mint(sprintf("file:%d", $file->id));
|
||||
$object->link = $file->getAttachmentUrl();
|
||||
|
||||
if ($file->title) {
|
||||
|
@ -527,39 +535,73 @@ class ActivityObject
|
|||
}
|
||||
|
||||
switch (self::canonicalType($object->type)) {
|
||||
case 'image':
|
||||
$object->largerImage = $file->getUrl();
|
||||
break;
|
||||
case 'video':
|
||||
case 'audio':
|
||||
$object->stream = $file->getUrl();
|
||||
break;
|
||||
case 'image':
|
||||
$object->largerImage = $file->getUrl();
|
||||
break;
|
||||
case 'video':
|
||||
case 'audio':
|
||||
$object->stream = $file->getUrl();
|
||||
break;
|
||||
}
|
||||
|
||||
Event::handle('EndActivityObjectFromFile', array($file, &$object));
|
||||
Event::handle('EndActivityObjectFromFile', [$file, &$object]);
|
||||
}
|
||||
|
||||
return $object;
|
||||
}
|
||||
|
||||
static function fromNoticeSource(Notice_source $source)
|
||||
public static function mimeTypeToObjectType($mimeType)
|
||||
{
|
||||
$ot = null;
|
||||
|
||||
// Default
|
||||
|
||||
if (empty($mimeType)) {
|
||||
return self::FILE;
|
||||
}
|
||||
|
||||
$parts = explode('/', $mimeType);
|
||||
|
||||
switch ($parts[0]) {
|
||||
case 'image':
|
||||
$ot = self::IMAGE;
|
||||
break;
|
||||
case 'audio':
|
||||
$ot = self::AUDIO;
|
||||
break;
|
||||
case 'video':
|
||||
$ot = self::VIDEO;
|
||||
break;
|
||||
default:
|
||||
$ot = self::FILE;
|
||||
}
|
||||
|
||||
return $ot;
|
||||
}
|
||||
|
||||
public static function canonicalType($type)
|
||||
{
|
||||
return ActivityUtils::resolveUri($type, true);
|
||||
}
|
||||
|
||||
public static function fromNoticeSource(Notice_source $source)
|
||||
{
|
||||
$object = new ActivityObject();
|
||||
$wellKnown = array('web', 'xmpp', 'mail', 'omb', 'system', 'api', 'ostatus',
|
||||
'activity', 'feed', 'mirror', 'twitter', 'facebook');
|
||||
$wellKnown = ['web', 'xmpp', 'mail', 'omb', 'system', 'api', 'ostatus',
|
||||
'activity', 'feed', 'mirror', 'twitter', 'facebook'];
|
||||
|
||||
if (Event::handle('StartActivityObjectFromNoticeSource', array($source, &$object))) {
|
||||
if (Event::handle('StartActivityObjectFromNoticeSource', [$source, &$object])) {
|
||||
$object->type = ActivityObject::APPLICATION;
|
||||
|
||||
if (in_array($source->code, $wellKnown)) {
|
||||
// We use one ID for all well-known StatusNet sources
|
||||
$object->id = "tag:status.net,2009:notice-source:".$source->code;
|
||||
} else if ($source->url) {
|
||||
$object->id = "tag:status.net,2009:notice-source:" . $source->code;
|
||||
} elseif ($source->url) {
|
||||
// They registered with an URL
|
||||
$object->id = $source->url;
|
||||
} else {
|
||||
// Locally-registered, no URL
|
||||
$object->id = TagURI::mint("notice-source:".$source->code);
|
||||
$object->id = TagURI::mint("notice-source:" . $source->code);
|
||||
}
|
||||
|
||||
if ($source->url) {
|
||||
|
@ -575,47 +617,62 @@ class ActivityObject
|
|||
if ($source->created) {
|
||||
$object->date = $source->created;
|
||||
}
|
||||
|
||||
$object->extra[] = array('status_net', array('source_code' => $source->code));
|
||||
|
||||
Event::handle('EndActivityObjectFromNoticeSource', array($source, &$object));
|
||||
$object->extra[] = ['status_net', ['source_code' => $source->code]];
|
||||
|
||||
Event::handle('EndActivityObjectFromNoticeSource', [$source, &$object]);
|
||||
}
|
||||
|
||||
return $object;
|
||||
}
|
||||
|
||||
static function fromMessage(Message $message)
|
||||
public static function fromMessage(Message $message)
|
||||
{
|
||||
$object = new ActivityObject();
|
||||
|
||||
if (Event::handle('StartActivityObjectFromMessage', array($message, &$object))) {
|
||||
|
||||
$object->type = ActivityObject::NOTE;
|
||||
$object->id = ($message->uri) ? $message->uri : (($message->url) ? $message->url : TagURI::mint(sprintf("message:%d", $message->id)));
|
||||
if (Event::handle('StartActivityObjectFromMessage', [$message, &$object])) {
|
||||
$object->type = ActivityObject::NOTE;
|
||||
$object->id = ($message->uri) ? $message->uri : (($message->url) ? $message->url : TagURI::mint(sprintf("message:%d", $message->id)));
|
||||
$object->content = $message->rendered;
|
||||
$object->date = $message->created;
|
||||
$object->date = $message->created;
|
||||
|
||||
if ($message->url) {
|
||||
$object->link = $message->url;
|
||||
} else {
|
||||
$object->link = common_local_url('showmessage', array('message' => $message->id));
|
||||
$object->link = common_local_url('showmessage', ['message' => $message->id]);
|
||||
}
|
||||
|
||||
$object->extra[] = array('status_net', array('message_id' => $message->id));
|
||||
|
||||
Event::handle('EndActivityObjectFromMessage', array($message, &$object));
|
||||
$object->extra[] = ['status_net', ['message_id' => $message->id]];
|
||||
|
||||
Event::handle('EndActivityObjectFromMessage', [$message, &$object]);
|
||||
}
|
||||
|
||||
return $object;
|
||||
}
|
||||
|
||||
function outputTo($xo, $tag='activity:object')
|
||||
/*
|
||||
* Returns an array based on this Activity Object suitable for
|
||||
* encoding as JSON.
|
||||
*
|
||||
* @return array $object the activity object array
|
||||
*/
|
||||
|
||||
public function asString($tag = 'activity:object')
|
||||
{
|
||||
$xs = new XMLStringer(true);
|
||||
|
||||
$this->outputTo($xs, $tag);
|
||||
|
||||
return $xs->getString();
|
||||
}
|
||||
|
||||
public function outputTo($xo, $tag = 'activity:object')
|
||||
{
|
||||
if (!empty($tag)) {
|
||||
$xo->elementStart($tag);
|
||||
}
|
||||
|
||||
if (Event::handle('StartActivityObjectOutputAtom', array($this, $xo))) {
|
||||
if (Event::handle('StartActivityObjectOutputAtom', [$this, $xo])) {
|
||||
$xo->element('activity:object-type', null, $this->type);
|
||||
|
||||
// <author> uses URI
|
||||
|
@ -650,7 +707,7 @@ class ActivityObject
|
|||
// XXX: assuming HTML content here
|
||||
$xo->element(
|
||||
ActivityUtils::CONTENT,
|
||||
array('type' => 'html'),
|
||||
['type' => 'html'],
|
||||
common_xml_safe_str($this->content)
|
||||
);
|
||||
}
|
||||
|
@ -658,45 +715,43 @@ class ActivityObject
|
|||
if (!empty($this->link)) {
|
||||
$xo->element(
|
||||
'link',
|
||||
array(
|
||||
[
|
||||
'rel' => 'alternate',
|
||||
'type' => 'text/html',
|
||||
'href' => $this->link
|
||||
),
|
||||
null
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
if (!empty($this->selfLink)) {
|
||||
$xo->element(
|
||||
'link',
|
||||
array(
|
||||
[
|
||||
'rel' => 'self',
|
||||
'type' => 'application/atom+xml',
|
||||
'href' => $this->selfLink
|
||||
),
|
||||
null
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
if(!empty($this->owner)) {
|
||||
if (!empty($this->owner)) {
|
||||
$owner = $this->owner->asActivityNoun(self::AUTHOR);
|
||||
$xo->raw($owner);
|
||||
}
|
||||
|
||||
if ($this->type == ActivityObject::PERSON
|
||||
|| $this->type == ActivityObject::GROUP) {
|
||||
|
||||
foreach ($this->avatarLinks as $alink) {
|
||||
$xo->element('link',
|
||||
array(
|
||||
'rel' => 'avatar',
|
||||
'type' => $alink->type,
|
||||
'media:width' => $alink->width,
|
||||
'media:height' => $alink->height,
|
||||
'href' => $alink->url,
|
||||
),
|
||||
null);
|
||||
$xo->element(
|
||||
'link',
|
||||
[
|
||||
'rel' => 'avatar',
|
||||
'type' => $alink->type,
|
||||
'media:width' => $alink->width,
|
||||
'media:height' => $alink->height,
|
||||
'href' => $alink->url,
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -719,7 +774,7 @@ class ActivityObject
|
|||
$xo->element($extraTag, $attrs, $content);
|
||||
}
|
||||
|
||||
Event::handle('EndActivityObjectOutputAtom', array($this, $xo));
|
||||
Event::handle('EndActivityObjectOutputAtom', [$this, $xo]);
|
||||
}
|
||||
|
||||
if (!empty($tag)) {
|
||||
|
@ -729,27 +784,11 @@ class ActivityObject
|
|||
return;
|
||||
}
|
||||
|
||||
function asString($tag='activity:object')
|
||||
public function asArray()
|
||||
{
|
||||
$xs = new XMLStringer(true);
|
||||
$object = [];
|
||||
|
||||
$this->outputTo($xs, $tag);
|
||||
|
||||
return $xs->getString();
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns an array based on this Activity Object suitable for
|
||||
* encoding as JSON.
|
||||
*
|
||||
* @return array $object the activity object array
|
||||
*/
|
||||
|
||||
function asArray()
|
||||
{
|
||||
$object = array();
|
||||
|
||||
if (Event::handle('StartActivityObjectOutputJson', array($this, &$object))) {
|
||||
if (Event::handle('StartActivityObjectOutputJson', [$this, &$object])) {
|
||||
// XXX: attachments are added by Activity
|
||||
|
||||
// author (Add object for author? Could be useful for repeats.)
|
||||
|
@ -762,7 +801,7 @@ class ActivityObject
|
|||
|
||||
if ($this->id) {
|
||||
$object['id'] = $this->id;
|
||||
} else if ($this->link) {
|
||||
} elseif ($this->link) {
|
||||
$object['id'] = $this->link;
|
||||
}
|
||||
|
||||
|
@ -775,8 +814,8 @@ class ActivityObject
|
|||
// XXX: Not sure what the best avatar is to use for the
|
||||
// author's "image". For now, I'm using the large size.
|
||||
|
||||
$imgLink = null;
|
||||
$avatarMediaLinks = array();
|
||||
$imgLink = null;
|
||||
$avatarMediaLinks = [];
|
||||
|
||||
foreach ($this->avatarLinks as $a) {
|
||||
|
||||
|
@ -798,14 +837,14 @@ class ActivityObject
|
|||
}
|
||||
|
||||
if (!array_key_exists('status_net', $object)) {
|
||||
$object['status_net'] = array();
|
||||
$object['status_net'] = [];
|
||||
}
|
||||
|
||||
$object['status_net']['avatarLinks'] = $avatarMediaLinks; // extension
|
||||
|
||||
// image
|
||||
if (!empty($imgLink)) {
|
||||
$object['image'] = $imgLink->asArray();
|
||||
$object['image'] = $imgLink->asArray();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -843,7 +882,7 @@ class ActivityObject
|
|||
$parts = explode(":", $objectName);
|
||||
if (count($parts) == 2 && $parts[0] == "statusnet") {
|
||||
if (!array_key_exists('status_net', $object)) {
|
||||
$object['status_net'] = array();
|
||||
$object['status_net'] = [];
|
||||
}
|
||||
$object['status_net'][$parts[1]] = $props;
|
||||
} else {
|
||||
|
@ -853,16 +892,15 @@ class ActivityObject
|
|||
}
|
||||
|
||||
if (!empty($this->geopoint)) {
|
||||
|
||||
list($lat, $lon) = explode(' ', $this->geopoint);
|
||||
|
||||
if (!empty($lat) && !empty($lon)) {
|
||||
$object['location'] = array(
|
||||
$object['location'] = [
|
||||
'objectType' => 'place',
|
||||
'position' => sprintf("%+02.5F%+03.5F/", $lat, $lon),
|
||||
'lat' => $lat,
|
||||
'lon' => $lon
|
||||
);
|
||||
];
|
||||
|
||||
$loc = Location::fromLatLon((float)$lat, (float)$lon);
|
||||
|
||||
|
@ -887,9 +925,9 @@ class ActivityObject
|
|||
|
||||
if (!empty($this->thumbnail)) {
|
||||
if (is_string($this->thumbnail)) {
|
||||
$object['image'] = array('url' => $this->thumbnail);
|
||||
$object['image'] = ['url' => $this->thumbnail];
|
||||
} else {
|
||||
$object['image'] = array('url' => $this->thumbnail->getUrl());
|
||||
$object['image'] = ['url' => $this->thumbnail->getUrl()];
|
||||
if ($this->thumbnail->width) {
|
||||
$object['image']['width'] = $this->thumbnail->width;
|
||||
}
|
||||
|
@ -900,63 +938,32 @@ class ActivityObject
|
|||
}
|
||||
|
||||
switch (self::canonicalType($this->type)) {
|
||||
case 'image':
|
||||
if (!empty($this->largerImage)) {
|
||||
$object['fullImage'] = array('url' => $this->largerImage);
|
||||
}
|
||||
break;
|
||||
case 'audio':
|
||||
case 'video':
|
||||
if (!empty($this->stream)) {
|
||||
$object['stream'] = array('url' => $this->stream);
|
||||
}
|
||||
break;
|
||||
case 'image':
|
||||
if (!empty($this->largerImage)) {
|
||||
$object['fullImage'] = ['url' => $this->largerImage];
|
||||
}
|
||||
break;
|
||||
case 'audio':
|
||||
case 'video':
|
||||
if (!empty($this->stream)) {
|
||||
$object['stream'] = ['url' => $this->stream];
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Event::handle('EndActivityObjectOutputJson', array($this, &$object));
|
||||
Event::handle('EndActivityObjectOutputJson', [$this, &$object]);
|
||||
}
|
||||
return array_filter($object);
|
||||
}
|
||||
|
||||
public function getIdentifiers() {
|
||||
$ids = array();
|
||||
foreach(array('id', 'link', 'url') as $id) {
|
||||
public function getIdentifiers()
|
||||
{
|
||||
$ids = [];
|
||||
foreach (['id', 'link', 'url'] as $id) {
|
||||
if (isset($this->$id)) {
|
||||
$ids[] = $this->$id;
|
||||
}
|
||||
}
|
||||
return array_unique($ids);
|
||||
}
|
||||
|
||||
static function canonicalType($type) {
|
||||
return ActivityUtils::resolveUri($type, true);
|
||||
}
|
||||
|
||||
static function mimeTypeToObjectType($mimeType) {
|
||||
$ot = null;
|
||||
|
||||
// Default
|
||||
|
||||
if (empty($mimeType)) {
|
||||
return self::FILE;
|
||||
}
|
||||
|
||||
$parts = explode('/', $mimeType);
|
||||
|
||||
switch ($parts[0]) {
|
||||
case 'image':
|
||||
$ot = self::IMAGE;
|
||||
break;
|
||||
case 'audio':
|
||||
$ot = self::AUDIO;
|
||||
break;
|
||||
case 'video':
|
||||
$ot = self::VIDEO;
|
||||
break;
|
||||
default:
|
||||
$ot = self::FILE;
|
||||
}
|
||||
|
||||
return $ot;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,7 +120,7 @@ class ApiAction extends Action
|
|||
{
|
||||
const READ_ONLY = 1;
|
||||
const READ_WRITE = 2;
|
||||
public static $reserved_sources = array('web', 'omb', 'ostatus', 'mail', 'xmpp', 'api');
|
||||
public static $reserved_sources = ['web', 'omb', 'ostatus', 'mail', 'xmpp', 'api'];
|
||||
public $user = null;
|
||||
public $auth_user = null;
|
||||
public $page = null;
|
||||
|
@ -136,19 +136,19 @@ class ApiAction extends Action
|
|||
|
||||
public function twitterRelationshipArray($source, $target)
|
||||
{
|
||||
$relationship = array();
|
||||
$relationship = [];
|
||||
|
||||
$relationship['source'] =
|
||||
$this->relationshipDetailsArray($source->getProfile(), $target->getProfile());
|
||||
$relationship['target'] =
|
||||
$this->relationshipDetailsArray($target->getProfile(), $source->getProfile());
|
||||
|
||||
return array('relationship' => $relationship);
|
||||
return ['relationship' => $relationship];
|
||||
}
|
||||
|
||||
public function relationshipDetailsArray(Profile $source, Profile $target)
|
||||
{
|
||||
$details = array();
|
||||
$details = [];
|
||||
|
||||
$details['screen_name'] = $source->getNickname();
|
||||
$details['followed_by'] = $target->isSubscribed($source);
|
||||
|
@ -195,19 +195,18 @@ class ApiAction extends Action
|
|||
* See that method's documentation for more info.
|
||||
*
|
||||
* @param string $tag Element type or tagname
|
||||
* @param array $attrs Array of element attributes, as
|
||||
* key-value pairs
|
||||
* @param string $content string content of the element
|
||||
* @param array|string|null $attrs Array of element attributes, as key-value pairs
|
||||
* @param string|null $content string content of the element
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function element($tag, $attrs = [], $content = "")
|
||||
public function element(string $tag, $attrs = null, $content = null)
|
||||
{
|
||||
if (is_bool($content)) {
|
||||
$content = ($content ? 'true' : 'false');
|
||||
$content = ($content ? "true" : "false");
|
||||
}
|
||||
|
||||
return parent::element($tag, $attrs, $content);
|
||||
parent::element($tag, $attrs, $content);
|
||||
}
|
||||
|
||||
public function showSingleXmlStatus($notice)
|
||||
|
@ -254,23 +253,23 @@ class ApiAction extends Action
|
|||
$this->startXML();
|
||||
$this->elementStart(
|
||||
'rss',
|
||||
array(
|
||||
[
|
||||
'version' => '2.0',
|
||||
'xmlns:atom' => 'http://www.w3.org/2005/Atom',
|
||||
'xmlns:georss' => 'http://www.georss.org/georss'
|
||||
)
|
||||
]
|
||||
);
|
||||
$this->elementStart('channel');
|
||||
Event::handle('StartApiRss', array($this));
|
||||
Event::handle('StartApiRss', [$this]);
|
||||
}
|
||||
|
||||
public function initTwitterAtom()
|
||||
{
|
||||
$this->startXML();
|
||||
// FIXME: don't hardcode the language here!
|
||||
$this->elementStart('feed', array('xmlns' => 'http://www.w3.org/2005/Atom',
|
||||
$this->elementStart('feed', ['xmlns' => 'http://www.w3.org/2005/Atom',
|
||||
'xml:lang' => 'en-US',
|
||||
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0'));
|
||||
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0']);
|
||||
}
|
||||
|
||||
public function twitterStatusArray($notice, $include_user = true)
|
||||
|
@ -293,7 +292,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$profile = $notice->getProfile();
|
||||
|
||||
$twitter_status = array();
|
||||
$twitter_status = [];
|
||||
$twitter_status['text'] = $notice->content;
|
||||
$twitter_status['truncated'] = false; # Not possible on StatusNet
|
||||
$twitter_status['created_at'] = self::dateTwitter($notice->created);
|
||||
|
@ -346,9 +345,9 @@ class ApiAction extends Action
|
|||
try {
|
||||
$notloc = Notice_location::locFromStored($notice);
|
||||
// This is the format that GeoJSON expects stuff to be in
|
||||
$twitter_status['geo'] = array('type' => 'Point',
|
||||
'coordinates' => array((float)$notloc->lat,
|
||||
(float)$notloc->lon));
|
||||
$twitter_status['geo'] = ['type' => 'Point',
|
||||
'coordinates' => [(float)$notloc->lat,
|
||||
(float)$notloc->lon]];
|
||||
} catch (ServerException $e) {
|
||||
$twitter_status['geo'] = null;
|
||||
}
|
||||
|
@ -357,12 +356,12 @@ class ApiAction extends Action
|
|||
$attachments = $notice->attachments();
|
||||
|
||||
if (!empty($attachments)) {
|
||||
$twitter_status['attachments'] = array();
|
||||
$twitter_status['attachments'] = [];
|
||||
|
||||
foreach ($attachments as $attachment) {
|
||||
try {
|
||||
$enclosure_o = $attachment->getEnclosure();
|
||||
$enclosure = array();
|
||||
$enclosure = [];
|
||||
$enclosure['url'] = $enclosure_o->url;
|
||||
$enclosure['mimetype'] = $enclosure_o->mimetype;
|
||||
$enclosure['size'] = $enclosure_o->size;
|
||||
|
@ -385,8 +384,8 @@ class ApiAction extends Action
|
|||
$twitter_status['statusnet_conversation_id'] = intval($notice->conversation);
|
||||
|
||||
// The event call to handle NoticeSimpleStatusArray lets plugins add data to the output array
|
||||
Event::handle('NoticeSimpleStatusArray', array($notice, &$twitter_status, $this->scoped,
|
||||
array('include_user' => $include_user)));
|
||||
Event::handle('NoticeSimpleStatusArray', [$notice, &$twitter_status, $this->scoped,
|
||||
['include_user' => $include_user]]);
|
||||
|
||||
return $twitter_status;
|
||||
}
|
||||
|
@ -401,7 +400,7 @@ class ApiAction extends Action
|
|||
|
||||
public function twitterUserArray($profile, $get_notice = false)
|
||||
{
|
||||
$twitter_user = array();
|
||||
$twitter_user = [];
|
||||
|
||||
try {
|
||||
$user = $profile->getUser();
|
||||
|
@ -430,7 +429,7 @@ class ApiAction extends Action
|
|||
$twitter_user['profile_image_url_original'] = $origurl;
|
||||
|
||||
$twitter_user['groups_count'] = $profile->getGroupCount();
|
||||
foreach (array('linkcolor', 'backgroundcolor') as $key) {
|
||||
foreach (['linkcolor', 'backgroundcolor'] as $key) {
|
||||
$twitter_user[$key] = Profile_prefs::getConfigData($profile, 'theme', $key);
|
||||
}
|
||||
// END introduced by qvitter API, not necessary for StatusNet API
|
||||
|
@ -489,14 +488,14 @@ class ApiAction extends Action
|
|||
$twitter_user['statusnet_profile_url'] = $profile->profileurl;
|
||||
|
||||
// The event call to handle NoticeSimpleStatusArray lets plugins add data to the output array
|
||||
Event::handle('TwitterUserArray', array($profile, &$twitter_user, $this->scoped, array()));
|
||||
Event::handle('TwitterUserArray', [$profile, &$twitter_user, $this->scoped, []]);
|
||||
|
||||
return $twitter_user;
|
||||
}
|
||||
|
||||
public function showTwitterXmlStatus($twitter_status, $tag = 'status', $namespaces = false)
|
||||
{
|
||||
$attrs = array();
|
||||
$attrs = [];
|
||||
if ($namespaces) {
|
||||
$attrs['xmlns:statusnet'] = 'http://status.net/schema/api/1/';
|
||||
}
|
||||
|
@ -537,7 +536,7 @@ class ApiAction extends Action
|
|||
|
||||
public function showTwitterXmlUser($twitter_user, $role = 'user', $namespaces = false)
|
||||
{
|
||||
$attrs = array();
|
||||
$attrs = [];
|
||||
if ($namespaces) {
|
||||
$attrs['xmlns:statusnet'] = 'http://status.net/schema/api/1/';
|
||||
}
|
||||
|
@ -557,9 +556,9 @@ class ApiAction extends Action
|
|||
public function showXmlAttachments($attachments)
|
||||
{
|
||||
if (!empty($attachments)) {
|
||||
$this->elementStart('attachments', array('type' => 'array'));
|
||||
$this->elementStart('attachments', ['type' => 'array']);
|
||||
foreach ($attachments as $attachment) {
|
||||
$attrs = array();
|
||||
$attrs = [];
|
||||
$attrs['url'] = $attachment['url'];
|
||||
$attrs['mimetype'] = $attachment['mimetype'];
|
||||
$attrs['size'] = $attachment['size'];
|
||||
|
@ -575,7 +574,7 @@ class ApiAction extends Action
|
|||
// empty geo element
|
||||
$this->element('geo');
|
||||
} else {
|
||||
$this->elementStart('geo', array('xmlns:georss' => 'http://www.georss.org/georss'));
|
||||
$this->elementStart('geo', ['xmlns:georss' => 'http://www.georss.org/georss']);
|
||||
$this->element('georss:point', null, $geo['coordinates'][0] . ' ' . $geo['coordinates'][1]);
|
||||
$this->elementEnd('geo');
|
||||
}
|
||||
|
@ -641,12 +640,12 @@ class ApiAction extends Action
|
|||
public function showXmlTimeline($notice)
|
||||
{
|
||||
$this->initDocument('xml');
|
||||
$this->elementStart('statuses', array('type' => 'array',
|
||||
'xmlns:statusnet' => 'http://status.net/schema/api/1/'));
|
||||
$this->elementStart('statuses', ['type' => 'array',
|
||||
'xmlns:statusnet' => 'http://status.net/schema/api/1/']);
|
||||
|
||||
if (is_array($notice)) {
|
||||
//FIXME: make everything calling showJsonTimeline use only Notice objects
|
||||
$ids = array();
|
||||
$ids = [];
|
||||
foreach ($notice as $n) {
|
||||
$ids[] = $n->getID();
|
||||
}
|
||||
|
@ -677,20 +676,20 @@ class ApiAction extends Action
|
|||
if (!is_null($self)) {
|
||||
$this->element(
|
||||
'atom:link',
|
||||
array(
|
||||
[
|
||||
'type' => 'application/rss+xml',
|
||||
'href' => $self,
|
||||
'rel' => 'self'
|
||||
)
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
if (!is_null($suplink)) {
|
||||
// For FriendFeed's SUP protocol
|
||||
$this->element('link', array('xmlns' => 'http://www.w3.org/2005/Atom',
|
||||
$this->element('link', ['xmlns' => 'http://www.w3.org/2005/Atom',
|
||||
'rel' => 'http://api.friendfeed.com/2008/03#sup',
|
||||
'href' => $suplink,
|
||||
'type' => 'application/json'));
|
||||
'type' => 'application/json']);
|
||||
}
|
||||
|
||||
if (!is_null($logo)) {
|
||||
|
@ -707,7 +706,7 @@ class ApiAction extends Action
|
|||
|
||||
if (is_array($notice)) {
|
||||
//FIXME: make everything calling showJsonTimeline use only Notice objects
|
||||
$ids = array();
|
||||
$ids = [];
|
||||
foreach ($notice as $n) {
|
||||
$ids[] = $n->getID();
|
||||
}
|
||||
|
@ -729,16 +728,16 @@ class ApiAction extends Action
|
|||
|
||||
public function twitterRssEntryArray($notice)
|
||||
{
|
||||
$entry = array();
|
||||
$entry = [];
|
||||
|
||||
if (Event::handle('StartRssEntryArray', array($notice, &$entry))) {
|
||||
if (Event::handle('StartRssEntryArray', [$notice, &$entry])) {
|
||||
$profile = $notice->getProfile();
|
||||
|
||||
// We trim() to avoid extraneous whitespace in the output
|
||||
|
||||
$entry['content'] = common_xml_safe_str(trim($notice->getRendered()));
|
||||
$entry['title'] = $profile->nickname . ': ' . common_xml_safe_str(trim($notice->content));
|
||||
$entry['link'] = common_local_url('shownotice', array('notice' => $notice->id));
|
||||
$entry['link'] = common_local_url('shownotice', ['notice' => $notice->id]);
|
||||
$entry['published'] = common_date_iso8601($notice->created);
|
||||
|
||||
$taguribase = TagURI::base();
|
||||
|
@ -749,12 +748,12 @@ class ApiAction extends Action
|
|||
|
||||
// Enclosures
|
||||
$attachments = $notice->attachments();
|
||||
$enclosures = array();
|
||||
$enclosures = [];
|
||||
|
||||
foreach ($attachments as $attachment) {
|
||||
try {
|
||||
$enclosure_o = $attachment->getEnclosure();
|
||||
$enclosure = array();
|
||||
$enclosure = [];
|
||||
$enclosure['url'] = $enclosure_o->url;
|
||||
$enclosure['mimetype'] = $enclosure_o->mimetype;
|
||||
$enclosure['size'] = $enclosure_o->size;
|
||||
|
@ -772,7 +771,7 @@ class ApiAction extends Action
|
|||
$tag = new Notice_tag();
|
||||
$tag->notice_id = $notice->id;
|
||||
if ($tag->find()) {
|
||||
$entry['tags'] = array();
|
||||
$entry['tags'] = [];
|
||||
while ($tag->fetch()) {
|
||||
$entry['tags'][] = $tag->tag;
|
||||
}
|
||||
|
@ -788,14 +787,14 @@ class ApiAction extends Action
|
|||
$notloc = Notice_location::locFromStored($notice);
|
||||
// This is the format that GeoJSON expects stuff to be in.
|
||||
// showGeoRSS() below uses it for XML output, so we reuse it
|
||||
$entry['geo'] = array('type' => 'Point',
|
||||
'coordinates' => array((float)$notloc->lat,
|
||||
(float)$notloc->lon));
|
||||
$entry['geo'] = ['type' => 'Point',
|
||||
'coordinates' => [(float)$notloc->lat,
|
||||
(float)$notloc->lon]];
|
||||
} catch (ServerException $e) {
|
||||
$entry['geo'] = null;
|
||||
}
|
||||
|
||||
Event::handle('EndRssEntryArray', array($notice, &$entry));
|
||||
Event::handle('EndRssEntryArray', [$notice, &$entry]);
|
||||
}
|
||||
|
||||
return $entry;
|
||||
|
@ -813,7 +812,7 @@ class ApiAction extends Action
|
|||
// RSS only supports 1 enclosure per item
|
||||
if (array_key_exists('enclosures', $entry) and !empty($entry['enclosures'])) {
|
||||
$enclosure = $entry['enclosures'][0];
|
||||
$this->element('enclosure', array('url' => $enclosure['url'], 'type' => $enclosure['mimetype'], 'length' => $enclosure['size']), null);
|
||||
$this->element('enclosure', ['url' => $enclosure['url'], 'type' => $enclosure['mimetype'], 'length' => $enclosure['size']]);
|
||||
}
|
||||
|
||||
if (array_key_exists('tags', $entry)) {
|
||||
|
@ -843,7 +842,7 @@ class ApiAction extends Action
|
|||
|
||||
$this->element('title', null, $title);
|
||||
$this->element('id', null, $id);
|
||||
$this->element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
|
||||
$this->element('link', ['href' => $link, 'rel' => 'alternate', 'type' => 'text/html']);
|
||||
|
||||
if (!is_null($logo)) {
|
||||
$this->element('logo', null, $logo);
|
||||
|
@ -851,14 +850,14 @@ class ApiAction extends Action
|
|||
|
||||
if (!is_null($suplink)) {
|
||||
// For FriendFeed's SUP protocol
|
||||
$this->element('link', array('rel' => 'http://api.friendfeed.com/2008/03#sup',
|
||||
$this->element('link', ['rel' => 'http://api.friendfeed.com/2008/03#sup',
|
||||
'href' => $suplink,
|
||||
'type' => 'application/json'));
|
||||
'type' => 'application/json']);
|
||||
}
|
||||
|
||||
if (!is_null($selfuri)) {
|
||||
$this->element('link', array('href' => $selfuri,
|
||||
'rel' => 'self', 'type' => 'application/atom+xml'), null);
|
||||
$this->element('link', ['href' => $selfuri,
|
||||
'rel' => 'self', 'type' => 'application/atom+xml']);
|
||||
}
|
||||
|
||||
$this->element('updated', null, common_date_iso8601('now'));
|
||||
|
@ -866,7 +865,7 @@ class ApiAction extends Action
|
|||
|
||||
if (is_array($notice)) {
|
||||
//FIXME: make everything calling showJsonTimeline use only Notice objects
|
||||
$ids = array();
|
||||
$ids = [];
|
||||
foreach ($notice as $n) {
|
||||
$ids[] = $n->getID();
|
||||
}
|
||||
|
@ -912,7 +911,7 @@ class ApiAction extends Action
|
|||
|
||||
public function twitterRssGroupArray($group)
|
||||
{
|
||||
$entry = array();
|
||||
$entry = [];
|
||||
$entry['content'] = $group->description;
|
||||
$entry['title'] = $group->nickname;
|
||||
$entry['link'] = $group->permalink();
|
||||
|
@ -934,18 +933,18 @@ class ApiAction extends Action
|
|||
$this->element('title', null, common_xml_safe_str($entry['title']));
|
||||
$this->element(
|
||||
'content',
|
||||
array('type' => 'html'),
|
||||
['type' => 'html'],
|
||||
common_xml_safe_str($entry['content'])
|
||||
);
|
||||
$this->element('id', null, $entry['id']);
|
||||
$this->element('published', null, $entry['published']);
|
||||
$this->element('updated', null, $entry['updated']);
|
||||
$this->element('link', array('type' => 'text/html',
|
||||
$this->element('link', ['type' => 'text/html',
|
||||
'href' => $entry['link'],
|
||||
'rel' => 'alternate'));
|
||||
$this->element('link', array('type' => $entry['avatar-type'],
|
||||
'rel' => 'alternate']);
|
||||
$this->element('link', ['type' => $entry['avatar-type'],
|
||||
'href' => $entry['avatar'],
|
||||
'rel' => 'image'));
|
||||
'rel' => 'image']);
|
||||
$this->elementStart('author');
|
||||
|
||||
$this->element('name', null, $entry['author-name']);
|
||||
|
@ -961,11 +960,11 @@ class ApiAction extends Action
|
|||
|
||||
$this->element('title', null, common_xml_safe_str($title));
|
||||
$this->element('id', null, $id);
|
||||
$this->element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
|
||||
$this->element('link', ['href' => $link, 'rel' => 'alternate', 'type' => 'text/html']);
|
||||
|
||||
if (!is_null($selfuri)) {
|
||||
$this->element('link', array('href' => $selfuri,
|
||||
'rel' => 'self', 'type' => 'application/atom+xml'), null);
|
||||
$this->element('link', ['href' => $selfuri,
|
||||
'rel' => 'self', 'type' => 'application/atom+xml']);
|
||||
}
|
||||
|
||||
$this->element('updated', null, common_date_iso8601('now'));
|
||||
|
@ -988,11 +987,11 @@ class ApiAction extends Action
|
|||
{
|
||||
$this->initDocument('json');
|
||||
|
||||
$statuses = array();
|
||||
$statuses = [];
|
||||
|
||||
if (is_array($notice)) {
|
||||
//FIXME: make everything calling showJsonTimeline use only Notice objects
|
||||
$ids = array();
|
||||
$ids = [];
|
||||
foreach ($notice as $n) {
|
||||
$ids[] = $n->getID();
|
||||
}
|
||||
|
@ -1018,7 +1017,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$this->initDocument('json');
|
||||
|
||||
$groups = array();
|
||||
$groups = [];
|
||||
|
||||
if (is_array($group)) {
|
||||
foreach ($group as $g) {
|
||||
|
@ -1039,7 +1038,7 @@ class ApiAction extends Action
|
|||
|
||||
public function twitterGroupArray($group)
|
||||
{
|
||||
$twitter_group = array();
|
||||
$twitter_group = [];
|
||||
|
||||
$twitter_group['id'] = intval($group->id);
|
||||
$twitter_group['url'] = $group->permalink();
|
||||
|
@ -1072,7 +1071,7 @@ class ApiAction extends Action
|
|||
public function showXmlGroups($group)
|
||||
{
|
||||
$this->initDocument('xml');
|
||||
$this->elementStart('groups', array('type' => 'array'));
|
||||
$this->elementStart('groups', ['type' => 'array']);
|
||||
|
||||
if (is_array($group)) {
|
||||
foreach ($group as $g) {
|
||||
|
@ -1103,7 +1102,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$this->initDocument('xml');
|
||||
$this->elementStart('lists_list');
|
||||
$this->elementStart('lists', array('type' => 'array'));
|
||||
$this->elementStart('lists', ['type' => 'array']);
|
||||
|
||||
if (is_array($list)) {
|
||||
foreach ($list as $l) {
|
||||
|
@ -1130,7 +1129,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$profile = Profile::getKV('id', $list->tagger);
|
||||
|
||||
$twitter_list = array();
|
||||
$twitter_list = [];
|
||||
$twitter_list['id'] = $list->id;
|
||||
$twitter_list['name'] = $list->tag;
|
||||
$twitter_list['full_name'] = '@' . $profile->nickname . '/' . $list->tag;;
|
||||
|
@ -1169,7 +1168,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$this->initDocument('json');
|
||||
|
||||
$lists = array();
|
||||
$lists = [];
|
||||
|
||||
if (is_array($list)) {
|
||||
foreach ($list as $l) {
|
||||
|
@ -1183,13 +1182,13 @@ class ApiAction extends Action
|
|||
}
|
||||
}
|
||||
|
||||
$lists_list = array(
|
||||
$lists_list = [
|
||||
'lists' => $lists,
|
||||
'next_cursor' => $next_cursor,
|
||||
'next_cursor_str' => strval($next_cursor),
|
||||
'previous_cursor' => $prev_cursor,
|
||||
'previous_cursor_str' => strval($prev_cursor)
|
||||
);
|
||||
];
|
||||
|
||||
$this->showJsonObjects($lists_list);
|
||||
|
||||
|
@ -1199,8 +1198,8 @@ class ApiAction extends Action
|
|||
public function showTwitterXmlUsers($user)
|
||||
{
|
||||
$this->initDocument('xml');
|
||||
$this->elementStart('users', array('type' => 'array',
|
||||
'xmlns:statusnet' => 'http://status.net/schema/api/1/'));
|
||||
$this->elementStart('users', ['type' => 'array',
|
||||
'xmlns:statusnet' => 'http://status.net/schema/api/1/']);
|
||||
|
||||
if (is_array($user)) {
|
||||
foreach ($user as $u) {
|
||||
|
@ -1222,7 +1221,7 @@ class ApiAction extends Action
|
|||
{
|
||||
$this->initDocument('json');
|
||||
|
||||
$users = array();
|
||||
$users = [];
|
||||
|
||||
if (is_array($user)) {
|
||||
foreach ($user as $u) {
|
||||
|
@ -1299,7 +1298,6 @@ class ApiAction extends Action
|
|||
public function getTargetProfile($id)
|
||||
{
|
||||
if (empty($id)) {
|
||||
|
||||
// Twitter supports these other ways of passing the user ID
|
||||
if (self::is_decimal($this->arg('id'))) {
|
||||
return Profile::getKV($this->arg('id'));
|
||||
|
@ -1322,14 +1320,16 @@ class ApiAction extends Action
|
|||
// Fall back to trying the currently authenticated user
|
||||
return $this->scoped;
|
||||
}
|
||||
} elseif (self::is_decimal($id) && intval($id) > 0) {
|
||||
return Profile::getByID($id);
|
||||
} else {
|
||||
// FIXME: check if isAcct to identify remote profiles and not just local nicknames
|
||||
$nickname = common_canonical_nickname($id);
|
||||
$user = User::getByNickname($nickname);
|
||||
return $user->getProfile();
|
||||
}
|
||||
|
||||
if (self::is_decimal($id) && intval($id) > 0) {
|
||||
return Profile::getByID($id);
|
||||
}
|
||||
|
||||
// FIXME: check if isAcct to identify remote profiles and not just local nicknames
|
||||
$nickname = common_canonical_nickname($id);
|
||||
$user = User::getByNickname($nickname);
|
||||
return $user->getProfile();
|
||||
}
|
||||
|
||||
private static function is_decimal($str)
|
||||
|
@ -1396,13 +1396,15 @@ class ApiAction extends Action
|
|||
} elseif ($this->arg('group_name')) {
|
||||
return User_group::getForNickname($this->arg('group_name'));
|
||||
}
|
||||
} elseif (self::is_decimal($id)) {
|
||||
}
|
||||
|
||||
if (self::is_decimal($id)) {
|
||||
return User_group::getKV('id', $id);
|
||||
} elseif ($this->arg('uri')) { // FIXME: move this into empty($id) check?
|
||||
return User_group::getKV('uri', urldecode($this->arg('uri')));
|
||||
} else {
|
||||
return User_group::getForNickname($id);
|
||||
}
|
||||
|
||||
return User_group::getForNickname($id);
|
||||
}
|
||||
|
||||
public function getTargetList($user = null, $id = null)
|
||||
|
@ -1461,12 +1463,14 @@ class ApiAction extends Action
|
|||
// Fall back to trying the currently authenticated user
|
||||
return $this->scoped->getUser();
|
||||
}
|
||||
} elseif (self::is_decimal($id)) {
|
||||
return User::getKV($id);
|
||||
} else {
|
||||
$nickname = common_canonical_nickname($id);
|
||||
return User::getKV('nickname', $nickname);
|
||||
}
|
||||
|
||||
if (self::is_decimal($id)) {
|
||||
return User::getKV($id);
|
||||
}
|
||||
|
||||
$nickname = common_canonical_nickname($id);
|
||||
return User::getKV('nickname', $nickname);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1480,7 +1484,7 @@ class ApiAction extends Action
|
|||
$action = mb_substr(get_class($this), 0, -6); // remove 'Action'
|
||||
|
||||
$id = $this->arg('id');
|
||||
$aargs = array('format' => $this->format);
|
||||
$aargs = ['format' => $this->format];
|
||||
if (!empty($id)) {
|
||||
$aargs['id'] = $id;
|
||||
}
|
||||
|
@ -1517,8 +1521,9 @@ class ApiAction extends Action
|
|||
* @param array $args Web and URL arguments
|
||||
*
|
||||
* @return boolean false if user doesn't exist
|
||||
* @throws ClientException
|
||||
*/
|
||||
protected function prepare(array $args = array())
|
||||
protected function prepare(array $args = [])
|
||||
{
|
||||
GNUsocial::setApi(true); // reduce exception reports to aid in debugging
|
||||
parent::prepare($args);
|
||||
|
@ -1550,8 +1555,6 @@ class ApiAction extends Action
|
|||
/**
|
||||
* Handle a request
|
||||
*
|
||||
* @param array $args Arguments from $_REQUEST
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function handle()
|
||||
|
|
|
@ -206,7 +206,7 @@ class Atom10Feed extends XMLStringer
|
|||
{
|
||||
foreach ($this->links as $attrs)
|
||||
{
|
||||
$this->element('link', $attrs, null);
|
||||
$this->element('link', $attrs);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -114,6 +114,6 @@ class AtomGroupNoticeFeed extends AtomNoticeFeed
|
|||
|
||||
$attrs['member_count'] = $this->group->getMemberCount();
|
||||
|
||||
$this->element('statusnet:group_info', $attrs, null);
|
||||
$this->element('statusnet:group_info', $attrs);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
*/
|
||||
class ErrorAction extends InfoAction
|
||||
{
|
||||
static $status = array();
|
||||
static $status = [];
|
||||
|
||||
var $code = null;
|
||||
var $message = null;
|
||||
|
@ -86,11 +86,11 @@ class ErrorAction extends InfoAction
|
|||
/**
|
||||
* Display content.
|
||||
*
|
||||
* @return nothing
|
||||
* @return void
|
||||
*/
|
||||
function showContent()
|
||||
{
|
||||
$this->element('div', array('class' => 'error'), $this->message);
|
||||
$this->element('div', ['class' => 'error'], $this->message);
|
||||
}
|
||||
|
||||
function showNoticeForm()
|
||||
|
@ -102,20 +102,19 @@ class ErrorAction extends InfoAction
|
|||
*
|
||||
* Goes back to the browser, where it's shown in a popup.
|
||||
*
|
||||
* @param string $msg Message to show
|
||||
*
|
||||
* @return void
|
||||
* @throws ClientException
|
||||
*/
|
||||
|
||||
function ajaxErrorMsg()
|
||||
{
|
||||
$this->startHTML('text/xml;charset=utf-8', true);
|
||||
$this->startHTML('text/xml;charset=utf-8');
|
||||
$this->elementStart('head');
|
||||
// TRANS: Page title after an AJAX error occurs on the send notice page.
|
||||
$this->element('title', null, _('Ajax Error'));
|
||||
$this->elementEnd('head');
|
||||
$this->elementStart('body');
|
||||
$this->element('p', array('id' => 'error'), $this->message);
|
||||
$this->element('p', ['id' => 'error'], $this->message);
|
||||
$this->elementEnd('body');
|
||||
$this->endHTML();
|
||||
}
|
||||
|
|
|
@ -28,7 +28,9 @@
|
|||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Can include XHTML options but these are too fragile in practice.
|
||||
define('PAGE_TYPE_PREFS', 'text/html');
|
||||
|
@ -51,22 +53,22 @@ define('PAGE_TYPE_PREFS', 'text/html');
|
|||
* @see Action
|
||||
* @see XMLOutputter
|
||||
*/
|
||||
|
||||
class HTMLOutputter extends XMLOutputter
|
||||
{
|
||||
protected $DTD = array('doctype' => 'html',
|
||||
'spec' => '-//W3C//DTD XHTML 1.0 Strict//EN',
|
||||
'uri' => 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
|
||||
protected $DTD = ['doctype' => 'html',
|
||||
'spec' => '-//W3C//DTD XHTML 1.0 Strict//EN',
|
||||
'uri' => 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'];
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* Just wraps the XMLOutputter constructor.
|
||||
*
|
||||
* @param string $output URI to output to, default = stdout
|
||||
* @param string $output URI to output to, default = stdout
|
||||
* @param boolean $indent Whether to indent output, default true
|
||||
*/
|
||||
|
||||
function __construct($output='php://output', $indent=null)
|
||||
public function __construct($output = 'php://output', $indent = null)
|
||||
{
|
||||
parent::__construct($output, $indent);
|
||||
}
|
||||
|
@ -80,16 +82,17 @@ class HTMLOutputter extends XMLOutputter
|
|||
*
|
||||
* @param string $type MIME type to use; default is to do negotation.
|
||||
*
|
||||
* @return void
|
||||
* @throws ClientException
|
||||
* @todo extract content negotiation code to an HTTP module or class.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function startHTML($type=null)
|
||||
public function startHTML($type = null)
|
||||
{
|
||||
if (!$type) {
|
||||
$httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
|
||||
$_SERVER['HTTP_ACCEPT'] : null;
|
||||
$_SERVER['HTTP_ACCEPT'] : null;
|
||||
|
||||
// XXX: allow content negotiation for RDF, RSS, or XRDS
|
||||
|
||||
|
@ -100,16 +103,16 @@ class HTMLOutputter extends XMLOutputter
|
|||
|
||||
if (!$type) {
|
||||
// TRANS: Client exception 406
|
||||
throw new ClientException(_('This page is not available in a '.
|
||||
'media type you accept'), 406);
|
||||
throw new ClientException(_('This page is not available in a ' .
|
||||
'media type you accept'), 406);
|
||||
}
|
||||
}
|
||||
|
||||
header('Content-Type: '.$type);
|
||||
header('Content-Type: ' . $type);
|
||||
|
||||
// Output anti-framing headers to prevent clickjacking (respected by newer
|
||||
// Output anti-framing headers to prevent clickjacking (respected by newer
|
||||
// browsers).
|
||||
if (common_config('javascript', 'bustframes')) {
|
||||
if (common_config('javascript', 'bustframes')) {
|
||||
header('X-XSS-Protection: 1; mode=block'); // detect XSS Reflection attacks
|
||||
header('X-Frame-Options: SAMEORIGIN'); // no rendering if origin mismatch
|
||||
}
|
||||
|
@ -124,55 +127,57 @@ class HTMLOutputter extends XMLOutputter
|
|||
|
||||
$language = $this->getLanguage();
|
||||
|
||||
$attrs = array(
|
||||
$attrs = [
|
||||
'xmlns' => 'http://www.w3.org/1999/xhtml',
|
||||
'xml:lang' => $language,
|
||||
'lang' => $language
|
||||
);
|
||||
];
|
||||
|
||||
if (Event::handle('StartHtmlElement', array($this, &$attrs))) {
|
||||
if (Event::handle('StartHtmlElement', [$this, &$attrs])) {
|
||||
$this->elementStart('html', $attrs);
|
||||
Event::handle('EndHtmlElement', array($this, &$attrs));
|
||||
Event::handle('EndHtmlElement', [$this, &$attrs]);
|
||||
}
|
||||
}
|
||||
|
||||
public function setDTD($doctype, $spec, $uri)
|
||||
/**
|
||||
* To specify additional HTTP headers for the action
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function extraHeaders()
|
||||
{
|
||||
$this->DTD = array('doctype' => $doctype, 'spec' => $spec, 'uri' => $uri);
|
||||
// Needs to be overloaded
|
||||
}
|
||||
|
||||
protected function writeDTD()
|
||||
{
|
||||
$this->xw->writeDTD($this->DTD['doctype'],
|
||||
$this->DTD['spec'],
|
||||
$this->DTD['uri']);
|
||||
$this->xw->writeDTD(
|
||||
$this->DTD['doctype'],
|
||||
$this->DTD['spec'],
|
||||
$this->DTD['uri']
|
||||
);
|
||||
}
|
||||
|
||||
function getLanguage()
|
||||
public function getLanguage()
|
||||
{
|
||||
// FIXME: correct language for interface
|
||||
return common_language();
|
||||
}
|
||||
|
||||
/**
|
||||
* Ends an HTML document
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function endHTML()
|
||||
public function setDTD($doctype, $spec, $uri)
|
||||
{
|
||||
$this->elementEnd('html');
|
||||
$this->endXML();
|
||||
$this->DTD = ['doctype' => $doctype, 'spec' => $spec, 'uri' => $uri];
|
||||
}
|
||||
|
||||
/**
|
||||
* To specify additional HTTP headers for the action
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function extraHeaders()
|
||||
* Ends an HTML document
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function endHTML()
|
||||
{
|
||||
// Needs to be overloaded
|
||||
$this->elementEnd('html');
|
||||
$this->endXML();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -185,24 +190,23 @@ class HTMLOutputter extends XMLOutputter
|
|||
*
|
||||
* If $attrs['type'] does not exist it will be set to 'text'.
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $value value of the element, default null
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $value value of the element, default null
|
||||
* @param string $instructions instructions for valid input
|
||||
* @param string $name name of the element; if null, the id will
|
||||
* be used
|
||||
* @param bool $required HTML5 required attribute (exclude when false)
|
||||
* @param array $attrs Initial attributes manually set in an array (overwritten by previous options)
|
||||
* @param string $name name of the element; if null, the id will be used
|
||||
* @param bool $required HTML5 required attribute (exclude when false)
|
||||
* @param array $attrs Initial attributes manually set in an array (overwritten by previous options)
|
||||
*
|
||||
* @return void
|
||||
* @todo add a $maxLength parameter
|
||||
* @todo add a $size parameter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function input($id, $label, $value=null, $instructions=null, $name=null, $required=false, array $attrs=array())
|
||||
public function input($id, $label, $value = null, $instructions = null, $name = null, $required = false, array $attrs = [])
|
||||
{
|
||||
$this->element('label', array('for' => $id), $label);
|
||||
$this->element('label', ['for' => $id], $label);
|
||||
if (!array_key_exists('type', $attrs)) {
|
||||
$attrs['type'] = 'text';
|
||||
}
|
||||
|
@ -234,25 +238,31 @@ class HTMLOutputter extends XMLOutputter
|
|||
* Note that the value is default 'true' (the string), which can
|
||||
* be used by Action::boolean()
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $checked if the box is checked, default false
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param bool $checked if the box is checked, default false
|
||||
* @param string $instructions instructions for valid input
|
||||
* @param string $value value of the checkbox, default 'true'
|
||||
* @param string $disabled show the checkbox disabled, default false
|
||||
* @param string $value value of the checkbox, default 'true'
|
||||
* @param bool $disabled show the checkbox disabled, default false
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
* @todo add a $name parameter
|
||||
*/
|
||||
|
||||
function checkbox($id, $label, $checked=false, $instructions=null,
|
||||
$value='true', $disabled=false)
|
||||
public function checkbox(
|
||||
$id,
|
||||
$label,
|
||||
$checked = false,
|
||||
$instructions = null,
|
||||
$value = 'true',
|
||||
$disabled = false
|
||||
)
|
||||
{
|
||||
$attrs = array('name' => $id,
|
||||
'type' => 'checkbox',
|
||||
'class' => 'checkbox',
|
||||
'id' => $id);
|
||||
$attrs = ['name' => $id,
|
||||
'type' => 'checkbox',
|
||||
'class' => 'checkbox',
|
||||
'id' => $id];
|
||||
if ($value) {
|
||||
$attrs['value'] = $value;
|
||||
}
|
||||
|
@ -264,9 +274,12 @@ class HTMLOutputter extends XMLOutputter
|
|||
}
|
||||
$this->element('input', $attrs);
|
||||
$this->text(' ');
|
||||
$this->element('label', array('class' => 'checkbox',
|
||||
'for' => $id),
|
||||
$label);
|
||||
$this->element(
|
||||
'label',
|
||||
['class' => 'checkbox',
|
||||
'for' => $id],
|
||||
$label
|
||||
);
|
||||
$this->text(' ');
|
||||
if ($instructions) {
|
||||
$this->element('p', 'form_guide', $instructions);
|
||||
|
@ -280,33 +293,42 @@ class HTMLOutputter extends XMLOutputter
|
|||
* the key is the option value attribute and the value is the option
|
||||
* text. (Careful on the overuse of 'value' here.)
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param array $content options array, value => text
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param array $content options array, value => text
|
||||
* @param string $instructions instructions for valid input
|
||||
* @param string $blank_select whether to have a blank entry, default false
|
||||
* @param string $selected selected value, default null
|
||||
* @param bool $blank_select whether to have a blank entry, default false
|
||||
* @param string $selected selected value, default null
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
* @todo add a $name parameter
|
||||
*/
|
||||
|
||||
function dropdown($id, $label, $content, $instructions=null,
|
||||
$blank_select=false, $selected=null)
|
||||
public function dropdown(
|
||||
$id,
|
||||
$label,
|
||||
$content,
|
||||
$instructions = null,
|
||||
$blank_select = false,
|
||||
$selected = null
|
||||
)
|
||||
{
|
||||
$this->element('label', array('for' => $id), $label);
|
||||
$this->elementStart('select', array('id' => $id, 'name' => $id));
|
||||
$this->element('label', ['for' => $id], $label);
|
||||
$this->elementStart('select', ['id' => $id, 'name' => $id]);
|
||||
if ($blank_select) {
|
||||
$this->element('option', array('value' => ''));
|
||||
$this->element('option', ['value' => '']);
|
||||
}
|
||||
foreach ($content as $value => $option) {
|
||||
if ($value == $selected) {
|
||||
$this->element('option', array('value' => $value,
|
||||
'selected' => 'selected'),
|
||||
$option);
|
||||
$this->element(
|
||||
'option',
|
||||
['value' => $value,
|
||||
'selected' => 'selected'],
|
||||
$option
|
||||
);
|
||||
} else {
|
||||
$this->element('option', array('value' => $value), $option);
|
||||
$this->element('option', ['value' => $value], $option);
|
||||
}
|
||||
}
|
||||
$this->elementEnd('select');
|
||||
|
@ -320,26 +342,26 @@ class HTMLOutputter extends XMLOutputter
|
|||
*
|
||||
* $id is re-used as name
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $value hidden element value, default null
|
||||
* @param string $name name, if different than ID
|
||||
* @param string $name name, if different than ID
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function hidden($id, $value, $name=null)
|
||||
public function hidden($id, $value, $name = null)
|
||||
{
|
||||
$this->element('input', array('name' => $name ?: $id,
|
||||
'type' => 'hidden',
|
||||
'id' => $id,
|
||||
'value' => $value));
|
||||
$this->element('input', ['name' => $name ?: $id,
|
||||
'type' => 'hidden',
|
||||
'id' => $id,
|
||||
'value' => $value]);
|
||||
}
|
||||
|
||||
/**
|
||||
* output an HTML password input and associated elements
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $instructions instructions for valid input
|
||||
*
|
||||
* @return void
|
||||
|
@ -347,13 +369,13 @@ class HTMLOutputter extends XMLOutputter
|
|||
* @todo add a $name parameter
|
||||
*/
|
||||
|
||||
function password($id, $label, $instructions=null)
|
||||
public function password($id, $label, $instructions = null)
|
||||
{
|
||||
$this->element('label', array('for' => $id), $label);
|
||||
$attrs = array('name' => $id,
|
||||
'type' => 'password',
|
||||
'class' => 'password',
|
||||
'id' => $id);
|
||||
$this->element('label', ['for' => $id], $label);
|
||||
$attrs = ['name' => $id,
|
||||
'type' => 'password',
|
||||
'class' => 'password',
|
||||
'id' => $id];
|
||||
$this->element('input', $attrs);
|
||||
if ($instructions) {
|
||||
$this->element('p', 'form_guide', $instructions);
|
||||
|
@ -363,39 +385,38 @@ class HTMLOutputter extends XMLOutputter
|
|||
/**
|
||||
* output an HTML submit input and associated elements
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of the button
|
||||
* @param string $cls class of the button, default 'submit'
|
||||
* @param string $name name, if different than ID
|
||||
* @param string $title title text for the submit button
|
||||
* @param string $cls class of the button, default 'submit'
|
||||
* @param string $name name, if different than ID
|
||||
* @param string $title title text for the submit button
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
* @todo add a $name parameter
|
||||
*/
|
||||
|
||||
function submit($id, $label, $cls='submit', $name=null, $title=null)
|
||||
public function submit($id, $label, $cls = 'submit', $name = null, $title = null)
|
||||
{
|
||||
$this->element('input', array('type' => 'submit',
|
||||
'id' => $id,
|
||||
'name' => $name ?: $id,
|
||||
'class' => $cls,
|
||||
'value' => $label,
|
||||
'title' => $title));
|
||||
$this->element('input', ['type' => 'submit',
|
||||
'id' => $id,
|
||||
'name' => $name ?: $id,
|
||||
'class' => $cls,
|
||||
'value' => $label,
|
||||
'title' => $title]);
|
||||
}
|
||||
|
||||
/**
|
||||
* output a script (almost always javascript) tag
|
||||
*
|
||||
* @param string $src relative or absolute script path
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
* @param string $src relative or absolute script path
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function script($src, $type='text/javascript')
|
||||
public function script($src, $type = 'text/javascript')
|
||||
{
|
||||
if (Event::handle('StartScriptElement', array($this,&$src,&$type))) {
|
||||
|
||||
if (Event::handle('StartScriptElement', [$this, &$src, &$type])) {
|
||||
$url = parse_url($src);
|
||||
|
||||
if (empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) {
|
||||
|
@ -403,35 +424,28 @@ class HTMLOutputter extends XMLOutputter
|
|||
// XXX: this seems like a big assumption
|
||||
|
||||
if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) {
|
||||
|
||||
$src = common_path($src, GNUsocial::isHTTPS()) . '?version=' . GNUSOCIAL_VERSION;
|
||||
|
||||
} else {
|
||||
|
||||
if (GNUsocial::isHTTPS()) {
|
||||
$server = common_config('javascript', 'sslserver');
|
||||
|
||||
$sslserver = common_config('javascript', 'sslserver');
|
||||
|
||||
if (empty($sslserver)) {
|
||||
if (empty($server)) {
|
||||
if (is_string(common_config('site', 'sslserver')) &&
|
||||
mb_strlen(common_config('site', 'sslserver')) > 0) {
|
||||
$server = common_config('site', 'sslserver');
|
||||
} else if (common_config('site', 'server')) {
|
||||
} elseif (common_config('site', 'server')) {
|
||||
$server = common_config('site', 'server');
|
||||
}
|
||||
$path = common_config('site', 'path') . '/js/';
|
||||
$path = common_config('site', 'path') . '/js/';
|
||||
} else {
|
||||
$server = $sslserver;
|
||||
$path = common_config('javascript', 'sslpath');
|
||||
$path = common_config('javascript', 'sslpath');
|
||||
if (empty($path)) {
|
||||
$path = common_config('javascript', 'path');
|
||||
}
|
||||
}
|
||||
|
||||
$protocol = 'https';
|
||||
|
||||
} else {
|
||||
|
||||
$path = common_config('javascript', 'path');
|
||||
|
||||
if (empty($path)) {
|
||||
|
@ -447,79 +461,55 @@ class HTMLOutputter extends XMLOutputter
|
|||
$protocol = 'http';
|
||||
}
|
||||
|
||||
if ($path[strlen($path)-1] != '/') {
|
||||
if ($path[strlen($path) - 1] != '/') {
|
||||
$path .= '/';
|
||||
}
|
||||
|
||||
if ($path[0] != '/') {
|
||||
$path = '/'.$path;
|
||||
$path = '/' . $path;
|
||||
}
|
||||
|
||||
$src = $protocol.'://'.$server.$path.$src . '?version=' . GNUSOCIAL_VERSION;
|
||||
$src = $protocol . '://' . $server . $path . $src . '?version=' . GNUSOCIAL_VERSION;
|
||||
}
|
||||
}
|
||||
|
||||
$this->element('script', array('type' => $type,
|
||||
'src' => $src),
|
||||
' ');
|
||||
$this->element(
|
||||
'script',
|
||||
['type' => $type,
|
||||
'src' => $src],
|
||||
' '
|
||||
);
|
||||
|
||||
Event::handle('EndScriptElement', array($this,$src,$type));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* output a script (almost always javascript) tag with inline
|
||||
* code.
|
||||
*
|
||||
* @param string $code code to put in the script tag
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function inlineScript($code, $type='text/javascript')
|
||||
{
|
||||
if(Event::handle('StartInlineScriptElement', array($this,&$code,&$type))) {
|
||||
$this->elementStart('script', array('type' => $type));
|
||||
if($type == 'text/javascript') {
|
||||
$this->raw('/*<![CDATA[*/ '); // XHTML compat
|
||||
}
|
||||
$this->raw($code);
|
||||
if($type == 'text/javascript') {
|
||||
$this->raw(' /*]]>*/'); // XHTML compat
|
||||
}
|
||||
$this->elementEnd('script');
|
||||
Event::handle('EndInlineScriptElement', array($this,$code,$type));
|
||||
Event::handle('EndScriptElement', [$this, $src, $type]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* output a css link
|
||||
*
|
||||
* @param string $src relative path within the theme directory, or an absolute path
|
||||
* @param string $theme 'theme' that contains the stylesheet
|
||||
* @param string $src relative path within the theme directory, or an absolute path
|
||||
* @param string $theme 'theme' that contains the stylesheet
|
||||
* @param string media 'media' attribute of the tag
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function cssLink($src,$theme=null,$media=null)
|
||||
public function cssLink($src, $theme = null, $media = null)
|
||||
{
|
||||
if(Event::handle('StartCssLinkElement', array($this,&$src,&$theme,&$media))) {
|
||||
if (Event::handle('StartCssLinkElement', [$this, &$src, &$theme, &$media])) {
|
||||
$url = parse_url($src);
|
||||
if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
|
||||
{
|
||||
if(file_exists(Theme::file($src,$theme))){
|
||||
$src = Theme::path($src, $theme);
|
||||
}else{
|
||||
if (empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) {
|
||||
if (file_exists(Theme::file($src, $theme))) {
|
||||
$src = Theme::path($src, $theme);
|
||||
} else {
|
||||
$src = common_path($src, GNUsocial::isHTTPS());
|
||||
}
|
||||
$src.= '?version=' . GNUSOCIAL_VERSION;
|
||||
$src .= '?version=' . GNUSOCIAL_VERSION;
|
||||
}
|
||||
$this->element('link', array('rel' => 'stylesheet',
|
||||
'type' => 'text/css',
|
||||
'href' => $src,
|
||||
'media' => $media));
|
||||
Event::handle('EndCssLinkElement', array($this,$src,$theme,$media));
|
||||
$this->element('link', ['rel' => 'stylesheet',
|
||||
'type' => 'text/css',
|
||||
'href' => $src,
|
||||
'media' => $media]);
|
||||
Event::handle('EndCssLinkElement', [$this, $src, $theme, $media]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -527,87 +517,119 @@ class HTMLOutputter extends XMLOutputter
|
|||
* output a style (almost always css) tag with inline
|
||||
* code.
|
||||
*
|
||||
* @param string $code code to put in the style tag
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
* @param string $media 'media' attribute value of the tag
|
||||
* @param string $code code to put in the style tag
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
* @param string $media 'media' attribute value of the tag
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function style($code, $type = 'text/css', $media = null)
|
||||
public function style($code, $type = 'text/css', $media = null)
|
||||
{
|
||||
if(Event::handle('StartStyleElement', array($this,&$code,&$type,&$media))) {
|
||||
$this->elementStart('style', array('type' => $type, 'media' => $media));
|
||||
if (Event::handle('StartStyleElement', [$this, &$code, &$type, &$media])) {
|
||||
$this->elementStart('style', ['type' => $type, 'media' => $media]);
|
||||
$this->raw($code);
|
||||
$this->elementEnd('style');
|
||||
Event::handle('EndStyleElement', array($this,$code,$type,$media));
|
||||
Event::handle('EndStyleElement', [$this, $code, $type, $media]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* output an HTML textarea and associated elements
|
||||
*
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $content content of the textarea, default none
|
||||
* @param string $id element ID, must be unique on page
|
||||
* @param string $label text of label for the element
|
||||
* @param string $content content of the textarea, default none
|
||||
* @param string $instructions instructions for valid input
|
||||
* @param string $name name of textarea; if null, $id will be used
|
||||
* @param int $cols number of columns
|
||||
* @param int $rows number of rows
|
||||
* @param bool $required HTML5 required attribute (exclude when false)
|
||||
* @param string $name name of textarea; if null, $id will be used
|
||||
* @param int $cols number of columns
|
||||
* @param int $rows number of rows
|
||||
* @param bool $required HTML5 required attribute (exclude when false)
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function textarea(
|
||||
public function textarea(
|
||||
$id,
|
||||
$label,
|
||||
$content = null,
|
||||
$content = null,
|
||||
$instructions = null,
|
||||
$name = null,
|
||||
$cols = null,
|
||||
$rows = null,
|
||||
$required = false
|
||||
) {
|
||||
$this->element('label', array('for' => $id), $label);
|
||||
$attrs = array(
|
||||
$name = null,
|
||||
$cols = null,
|
||||
$rows = null,
|
||||
$required = false
|
||||
)
|
||||
{
|
||||
$this->element('label', ['for' => $id], $label);
|
||||
$attrs = [
|
||||
'rows' => 3,
|
||||
'cols' => 40,
|
||||
'id' => $id
|
||||
);
|
||||
];
|
||||
$attrs['name'] = is_null($name) ? $id : $name;
|
||||
|
||||
if ($cols != null) {
|
||||
$attrs['cols'] = $cols;
|
||||
|
||||
}
|
||||
if ($rows != null) {
|
||||
$attrs['rows'] = $rows;
|
||||
}
|
||||
|
||||
if (!empty($required)) {
|
||||
$attrs['required'] = 'required';
|
||||
}
|
||||
|
||||
$this->element(
|
||||
'textarea',
|
||||
$attrs,
|
||||
is_null($content) ? '' : $content
|
||||
$content
|
||||
);
|
||||
if ($instructions) {
|
||||
$this->element('p', 'form_guide', $instructions);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Internal script to autofocus the given element on page onload.
|
||||
*
|
||||
* @param string $id element ID, must refer to an existing element
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
*/
|
||||
function autofocus($id)
|
||||
/**
|
||||
* Internal script to autofocus the given element on page onload.
|
||||
*
|
||||
* @param string $id element ID, must refer to an existing element
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
*/
|
||||
public function autofocus($id)
|
||||
{
|
||||
$this->inlineScript(
|
||||
' $(document).ready(function() {'.
|
||||
' var el = $("#' . $id . '");'.
|
||||
' if (el.length) { el.focus(); }'.
|
||||
' });');
|
||||
' $(document).ready(function() {' .
|
||||
' var el = $("#' . $id . '");' .
|
||||
' if (el.length) { el.focus(); }' .
|
||||
' });'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* output a script (almost always javascript) tag with inline
|
||||
* code.
|
||||
*
|
||||
* @param string $code code to put in the script tag
|
||||
* @param string $type 'type' attribute value of the tag
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
public function inlineScript($code, $type = 'text/javascript')
|
||||
{
|
||||
if (Event::handle('StartInlineScriptElement', [$this, &$code, &$type])) {
|
||||
$this->elementStart('script', ['type' => $type]);
|
||||
if ($type == 'text/javascript') {
|
||||
$this->raw('/*<![CDATA[*/ '); // XHTML compat
|
||||
}
|
||||
$this->raw($code);
|
||||
if ($type == 'text/javascript') {
|
||||
$this->raw(' /*]]>*/'); // XHTML compat
|
||||
}
|
||||
$this->elementEnd('script');
|
||||
Event::handle('EndInlineScriptElement', [$this, $code, $type]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ class InfoAction extends ManagedAction
|
|||
/**
|
||||
* Page title.
|
||||
*
|
||||
* @return page title
|
||||
* @return string page title
|
||||
*/
|
||||
|
||||
function title()
|
||||
|
@ -81,8 +81,8 @@ class InfoAction extends ManagedAction
|
|||
|
||||
function showBody()
|
||||
{
|
||||
$this->elementStart('body', array('id' => 'error'));
|
||||
$this->elementStart('div', array('id' => 'wrap'));
|
||||
$this->elementStart('body', ['id' => 'error']);
|
||||
$this->elementStart('div', ['id' => 'wrap']);
|
||||
$this->showHeader();
|
||||
$this->showCore();
|
||||
$this->showFooter();
|
||||
|
@ -92,10 +92,10 @@ class InfoAction extends ManagedAction
|
|||
|
||||
function showCore()
|
||||
{
|
||||
$this->elementStart('div', array('id' => 'core'));
|
||||
$this->elementStart('div', array('id' => 'aside_primary_wrapper'));
|
||||
$this->elementStart('div', array('id' => 'content_wrapper'));
|
||||
$this->elementStart('div', array('id' => 'site_nav_local_views_wrapper'));
|
||||
$this->elementStart('div', ['id' => 'core']);
|
||||
$this->elementStart('div', ['id' => 'aside_primary_wrapper']);
|
||||
$this->elementStart('div', ['id' => 'content_wrapper']);
|
||||
$this->elementStart('div', ['id' => 'site_nav_local_views_wrapper']);
|
||||
$this->showContentBlock();
|
||||
$this->elementEnd('div');
|
||||
$this->elementEnd('div');
|
||||
|
@ -105,7 +105,7 @@ class InfoAction extends ManagedAction
|
|||
|
||||
function showHeader()
|
||||
{
|
||||
$this->elementStart('div', array('id' => 'header'));
|
||||
$this->elementStart('div', ['id' => 'header']);
|
||||
$this->showLogo();
|
||||
$this->showPrimaryNav();
|
||||
$this->elementEnd('div');
|
||||
|
@ -114,11 +114,11 @@ class InfoAction extends ManagedAction
|
|||
/**
|
||||
* Display content.
|
||||
*
|
||||
* @return nothing
|
||||
* @return void
|
||||
*/
|
||||
function showContent()
|
||||
{
|
||||
$this->element('div', array('class' => 'info'), $this->message);
|
||||
$this->element('div', ['class' => 'info'], $this->message);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -150,12 +150,12 @@ class Menu extends Widget
|
|||
|
||||
function submenu($label, $menu)
|
||||
{
|
||||
if (Event::handle('StartSubMenu', array($this->action, $menu, $label))) {
|
||||
if (Event::handle('StartSubMenu', [$this->action, $menu, $label])) {
|
||||
$this->action->elementStart('li');
|
||||
$this->action->element('h3', null, $label);
|
||||
$menu->show();
|
||||
$this->action->elementEnd('li');
|
||||
Event::handle('EndSubMenu', array($this->action, $menu, $label));
|
||||
Event::handle('EndSubMenu', [$this->action, $menu, $label]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,9 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
if (!defined('GNUSOCIAL')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Class for displaying HTTP server errors
|
||||
|
@ -48,17 +50,16 @@ if (!defined('GNUSOCIAL')) { exit(1); }
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class ServerErrorAction extends ErrorAction
|
||||
{
|
||||
static $status = array(500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Service Unavailable',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported');
|
||||
static $status = [500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Service Unavailable',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported'];
|
||||
|
||||
function __construct($message='Error', $code=500, $ex=null)
|
||||
function __construct($message = 'Error', $code = 500, $ex = null)
|
||||
{
|
||||
parent::__construct($message, $code);
|
||||
|
||||
|
@ -85,23 +86,23 @@ class ServerErrorAction extends ErrorAction
|
|||
/**
|
||||
* To specify additional HTTP headers for the action
|
||||
*
|
||||
* @return void
|
||||
* @return void
|
||||
*/
|
||||
function extraHeaders()
|
||||
{
|
||||
$status_string = @self::$status[$this->code];
|
||||
header('HTTP/1.1 '.$this->code.' '.$status_string);
|
||||
$status_string = self::$status[$this->code];
|
||||
header('HTTP/1.1 ' . $this->code . ' ' . $status_string);
|
||||
}
|
||||
|
||||
/**
|
||||
* Page title.
|
||||
*
|
||||
* @return page title
|
||||
* @return string page title
|
||||
*/
|
||||
|
||||
function title()
|
||||
{
|
||||
return @self::$status[$this->code];
|
||||
return self::$status[$this->code];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
|
||||
class ServerException extends Exception
|
||||
{
|
||||
public function __construct($message = null, $code = 500) {
|
||||
public function __construct($message = "", $code = 500) {
|
||||
parent::__construct($message, $code);
|
||||
}
|
||||
|
||||
|
|
|
@ -48,7 +48,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
* @see Action
|
||||
* @see HTMLOutputter
|
||||
*/
|
||||
|
||||
class XMLOutputter
|
||||
{
|
||||
/**
|
||||
|
@ -56,25 +55,25 @@ class XMLOutputter
|
|||
* for output.
|
||||
*/
|
||||
|
||||
var $xw = null;
|
||||
public $xw = null;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* Initializes the wrapped XMLWriter.
|
||||
*
|
||||
* @param string $output URL for outputting, if null it defaults to stdout ('php://output')
|
||||
* @param string $output URL for outputting, if null it defaults to stdout ('php://output')
|
||||
* @param boolean $indent Whether to indent output, default true
|
||||
*/
|
||||
|
||||
function __construct($output=null, $indent=null)
|
||||
public function __construct($output = null, $indent = null)
|
||||
{
|
||||
if (is_null($output)) {
|
||||
$output = 'php://output';
|
||||
}
|
||||
$this->xw = new XMLWriter();
|
||||
$this->xw->openURI($output);
|
||||
if(is_null($indent)) {
|
||||
if (is_null($indent)) {
|
||||
$indent = common_config('site', 'indent');
|
||||
}
|
||||
$this->xw->setIndent($indent);
|
||||
|
@ -83,14 +82,14 @@ class XMLOutputter
|
|||
/**
|
||||
* Start a new XML document
|
||||
*
|
||||
* @param string $doc document element
|
||||
* @param string $doc document element
|
||||
* @param string $public public identifier
|
||||
* @param string $system system identifier
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function startXML($doc=null, $public=null, $system=null)
|
||||
public function startXML($doc = null, $public = null, $system = null)
|
||||
{
|
||||
$this->xw->startDocument('1.0', 'UTF-8');
|
||||
if ($doc) {
|
||||
|
@ -107,7 +106,7 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function endXML()
|
||||
public function endXML()
|
||||
{
|
||||
$this->xw->endDocument();
|
||||
$this->xw->flush();
|
||||
|
@ -128,28 +127,18 @@ class XMLOutputter
|
|||
* If $attrs is a string instead of an array, it will be treated
|
||||
* as the class attribute of the element.
|
||||
*
|
||||
* @param string $tag Element type or tagname
|
||||
* @param array $attrs Array of element attributes, as
|
||||
* key-value pairs
|
||||
* @param string $content string content of the element
|
||||
* @param string $tag Element type or tagname
|
||||
* @param array|string|null $attrs Array of element attributes, as key-value pairs
|
||||
* @param string|null $content string content of the element
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function element($tag, $attrs=null, $content=null)
|
||||
public function element(string $tag, $attrs = null, $content = null)
|
||||
{
|
||||
$this->elementStart($tag, $attrs);
|
||||
if (!is_null($content)) {
|
||||
$this->xw->text($content);
|
||||
}
|
||||
$this->elementEnd($tag);
|
||||
}
|
||||
|
||||
function elementNS(array $ns, $tag, $attrs=null, $content=null)
|
||||
{
|
||||
$this->elementStartNS($ns, $tag, $attrs);
|
||||
if (!is_null($content)) {
|
||||
$this->xw->text($content);
|
||||
$this->xw->text(strval($content));
|
||||
}
|
||||
$this->elementEnd($tag);
|
||||
}
|
||||
|
@ -163,34 +152,20 @@ class XMLOutputter
|
|||
* If $attrs is a string instead of an array, it will be treated
|
||||
* as the class attribute of the element.
|
||||
*
|
||||
* @param string $tag Element type or tagname
|
||||
* @param array $attrs Array of element attributes
|
||||
* @param string $tag Element type or tagname
|
||||
* @param array|string|null $attrs Attributes
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function elementStart($tag, $attrs=null)
|
||||
public function elementStart(string $tag, $attrs = null)
|
||||
{
|
||||
$this->xw->startElement($tag);
|
||||
if (is_array($attrs)) {
|
||||
foreach ($attrs as $name => $value) {
|
||||
$this->xw->writeAttribute($name, $value);
|
||||
}
|
||||
} else if (is_string($attrs)) {
|
||||
$this->xw->writeAttribute('class', $attrs);
|
||||
}
|
||||
}
|
||||
|
||||
function elementStartNS(array $ns, $tag, $attrs=null)
|
||||
{
|
||||
reset($ns); // array pointer to 0
|
||||
$uri = key($ns);
|
||||
$this->xw->startElementNS($ns[$uri], $tag, $uri);
|
||||
if (is_array($attrs)) {
|
||||
foreach ($attrs as $name => $value) {
|
||||
$this->xw->writeAttribute($name, $value);
|
||||
}
|
||||
} else if (is_string($attrs)) {
|
||||
} elseif (is_string($attrs)) {
|
||||
$this->xw->writeAttribute('class', $attrs);
|
||||
}
|
||||
}
|
||||
|
@ -211,11 +186,11 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function elementEnd($tag)
|
||||
public function elementEnd(string $tag)
|
||||
{
|
||||
static $empty_tag = array('base', 'meta', 'link', 'hr',
|
||||
'br', 'param', 'img', 'area',
|
||||
'input', 'col', 'source');
|
||||
static $empty_tag = ['base', 'meta', 'link', 'hr',
|
||||
'br', 'param', 'img', 'area',
|
||||
'input', 'col', 'source'];
|
||||
// XXX: check namespace
|
||||
if (in_array($tag, $empty_tag)) {
|
||||
$this->xw->endElement();
|
||||
|
@ -224,6 +199,29 @@ class XMLOutputter
|
|||
}
|
||||
}
|
||||
|
||||
public function elementNS(array $ns, $tag, $attrs = null, $content = null)
|
||||
{
|
||||
$this->elementStartNS($ns, $tag, $attrs);
|
||||
if (!is_null($content)) {
|
||||
$this->xw->text($content);
|
||||
}
|
||||
$this->elementEnd($tag);
|
||||
}
|
||||
|
||||
public function elementStartNS(array $ns, $tag, $attrs = null)
|
||||
{
|
||||
reset($ns); // array pointer to 0
|
||||
$uri = key($ns);
|
||||
$this->xw->startElementNS($ns[$uri], $tag, $uri);
|
||||
if (is_array($attrs)) {
|
||||
foreach ($attrs as $name => $value) {
|
||||
$this->xw->writeAttribute($name, $value);
|
||||
}
|
||||
} elseif (is_string($attrs)) {
|
||||
$this->xw->writeAttribute('class', $attrs);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* output plain text
|
||||
*
|
||||
|
@ -235,7 +233,7 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function text($txt)
|
||||
public function text($txt)
|
||||
{
|
||||
$this->xw->text($txt);
|
||||
}
|
||||
|
@ -251,7 +249,7 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function raw($xml)
|
||||
public function raw($xml)
|
||||
{
|
||||
$this->xw->writeRaw($xml);
|
||||
}
|
||||
|
@ -264,7 +262,7 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function comment($txt)
|
||||
public function comment($txt)
|
||||
{
|
||||
$this->xw->writeComment($txt);
|
||||
}
|
||||
|
@ -275,7 +273,7 @@ class XMLOutputter
|
|||
* @return void
|
||||
*/
|
||||
|
||||
function flush()
|
||||
public function flush()
|
||||
{
|
||||
$this->xw->flush();
|
||||
}
|
||||
|
|
|
@ -42,27 +42,26 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
* @see Action
|
||||
* @see HTMLOutputter
|
||||
*/
|
||||
|
||||
class XMLStringer extends XMLOutputter
|
||||
{
|
||||
function __construct($indent=false)
|
||||
public function __construct($indent = false)
|
||||
{
|
||||
$this->xw = new XMLWriter();
|
||||
$this->xw->openMemory();
|
||||
$this->xw->setIndent($indent);
|
||||
}
|
||||
|
||||
function getString()
|
||||
{
|
||||
return $this->xw->outputMemory();
|
||||
}
|
||||
|
||||
// utility for quickly creating XML-strings
|
||||
|
||||
static function estring($tag, $attrs=null, $content=null)
|
||||
public static function estring($tag, $attrs = null, $content = null)
|
||||
{
|
||||
$xs = new XMLStringer();
|
||||
$xs->element($tag, $attrs, $content);
|
||||
return $xs->getString();
|
||||
}
|
||||
}
|
||||
|
||||
// utility for quickly creating XML-strings
|
||||
|
||||
public function getString()
|
||||
{
|
||||
return $this->xw->outputMemory();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ class SortableGroupList extends SortableSubscriptionList
|
|||
|
||||
// TRANS: Column header in table for members of a group.
|
||||
$this->out->element('th', array('id' => 'Members'), _m('Members'));
|
||||
$this->out->element('th', array('id' => 'controls'), null);
|
||||
$this->out->element('th', array('id' => 'controls'));
|
||||
|
||||
$this->out->elementEnd('tr');
|
||||
$this->out->elementEnd('thead');
|
||||
|
|
|
@ -100,7 +100,7 @@ class SortableSubscriptionList extends SubscriptionList
|
|||
$this->out->element('th', array('id' => 'subscriptions'), _m('Subscriptions'));
|
||||
// TRANS: Column header for number of notices.
|
||||
$this->out->element('th', array('id' => 'notices'), _m('Notices'));
|
||||
$this->out->element('th', array('id' => 'controls'), null);
|
||||
$this->out->element('th', array('id' => 'controls'));
|
||||
|
||||
$this->out->elementEnd('tr');
|
||||
$this->out->elementEnd('thead');
|
||||
|
|
|
@ -103,7 +103,7 @@ class OembedPlugin extends Plugin
|
|||
array('format'=>'json', 'url'=>
|
||||
common_local_url('attachment',
|
||||
array('attachment' => $action->attachment->getID())))),
|
||||
'title'=>'oEmbed'),null);
|
||||
'title'=>'oEmbed'));
|
||||
$action->element('link',array('rel'=>'alternate',
|
||||
'type'=>'text/xml+oembed',
|
||||
'href'=>common_local_url(
|
||||
|
@ -112,7 +112,7 @@ class OembedPlugin extends Plugin
|
|||
array('format'=>'xml','url'=>
|
||||
common_local_url('attachment',
|
||||
array('attachment' => $action->attachment->getID())))),
|
||||
'title'=>'oEmbed'),null);
|
||||
'title'=>'oEmbed'));
|
||||
break;
|
||||
case 'shownotice':
|
||||
if (!$action->notice->isLocal()) {
|
||||
|
@ -125,14 +125,14 @@ class OembedPlugin extends Plugin
|
|||
'oembed',
|
||||
array(),
|
||||
array('format'=>'json','url'=>$action->notice->getUrl())),
|
||||
'title'=>'oEmbed'),null);
|
||||
'title'=>'oEmbed'));
|
||||
$action->element('link',array('rel'=>'alternate',
|
||||
'type'=>'text/xml+oembed',
|
||||
'href'=>common_local_url(
|
||||
'oembed',
|
||||
array(),
|
||||
array('format'=>'xml','url'=>$action->notice->getUrl())),
|
||||
'title'=>'oEmbed'),null);
|
||||
'title'=>'oEmbed'));
|
||||
} catch (InvalidUrlException $e) {
|
||||
// The notice is probably a share or similar, which don't
|
||||
// have a representational URL of their own.
|
||||
|
|
|
@ -137,8 +137,8 @@ class OpenidloginAction extends Action
|
|||
$appendUsername = common_config('openid', 'append_username');
|
||||
if ($provider) {
|
||||
// TRANS: Field label.
|
||||
$this->element('label', array(), _m('LABEL','OpenID provider'));
|
||||
$this->element('span', array(), $provider);
|
||||
$this->element('label', [], _m('LABEL','OpenID provider'));
|
||||
$this->element('span', [], $provider);
|
||||
if ($appendUsername) {
|
||||
$this->element('input', array('id' => 'openid_username',
|
||||
'name' => 'openid_username',
|
||||
|
|
Loading…
Reference in New Issue
Block a user