AtomPub fixes: return '201 Created' on POST of new message; better error checking on Atom input
This commit is contained in:
parent
0f26d6eb70
commit
54a0e801f3
|
@ -309,9 +309,15 @@ class ApiTimelineUserAction extends ApiBareAuthAction
|
|||
return;
|
||||
}
|
||||
|
||||
$xml = file_get_contents('php://input');
|
||||
$xml = trim(file_get_contents('php://input'));
|
||||
if (empty($xml)) {
|
||||
$this->clientError(_('Atom post must not be empty.'));
|
||||
}
|
||||
|
||||
$dom = DOMDocument::loadXML($xml);
|
||||
if (!$dom) {
|
||||
$this->clientError(_('Atom post must be well-formed XML.'));
|
||||
}
|
||||
|
||||
if ($dom->documentElement->namespaceURI != Activity::ATOM ||
|
||||
$dom->documentElement->localName != 'entry') {
|
||||
|
@ -349,6 +355,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
|
|||
}
|
||||
|
||||
if (!empty($saved)) {
|
||||
header('HTTP/1.1 201 Created');
|
||||
header("Location: " . common_local_url('ApiStatusesShow', array('notice_id' => $saved->id,
|
||||
'format' => 'atom')));
|
||||
$this->showSingleAtomStatus($saved);
|
||||
|
|
Loading…
Reference in New Issue
Block a user