mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
b902005bed
Summary: Ref T603. Killing this class is cool because the classes that replace it are policy-aware. Tried to keep my wits about me as I did this and fixed a few random things along the way. (Ones I remember right now are pulling a query outside of a foreach loop in Releeph and fixing the text in UIExample to note that the ace of hearts if "a powerful" card and not the "most powerful" card (Q of spades gets that honor IMO)) Test Plan: tested the first few changes (execute, executeOne X handle, object) then got real mechanical / careful with the other changes. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran, FacebookPOC Maniphest Tasks: T603 Differential Revision: https://secure.phabricator.com/D6941
107 lines
2.9 KiB
PHP
107 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group phame
|
|
*/
|
|
final class PhameBlogFeedController extends PhameController {
|
|
|
|
private $id;
|
|
|
|
public function shouldRequireLogin() {
|
|
return false;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$blog = id(new PhameBlogQuery())
|
|
->setViewer($user)
|
|
->withIDs(array($this->id))
|
|
->executeOne();
|
|
if (!$blog) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$posts = id(new PhamePostQuery())
|
|
->setViewer($user)
|
|
->withBlogPHIDs(array($blog->getPHID()))
|
|
->withVisibility(PhamePost::VISIBILITY_PUBLISHED)
|
|
->execute();
|
|
|
|
$blog_uri = PhabricatorEnv::getProductionURI(
|
|
$this->getApplicationURI('blog/feed/'.$blog->getID().'/'));
|
|
$content = array();
|
|
$content[] = phutil_tag('title', array(), $blog->getName());
|
|
$content[] = phutil_tag('id', array(), $blog_uri);
|
|
$content[] = phutil_tag('link',
|
|
array(
|
|
'rel' => 'self',
|
|
'type' => 'application/atom+xml',
|
|
'href' => $blog_uri
|
|
));
|
|
|
|
$updated = $blog->getDateModified();
|
|
if ($posts) {
|
|
$updated = max($updated, max(mpull($posts, 'getDateModified')));
|
|
}
|
|
$content[] = phutil_tag('updated', array(), date('c', $updated));
|
|
|
|
$description = $blog->getDescription();
|
|
if ($description != '') {
|
|
$content[] = phutil_tag('subtitle', array(), $description);
|
|
}
|
|
|
|
$engine = id(new PhabricatorMarkupEngine())->setViewer($user);
|
|
foreach ($posts as $post) {
|
|
$engine->addObject($post, PhamePost::MARKUP_FIELD_BODY);
|
|
}
|
|
$engine->process();
|
|
|
|
$blogger_phids = mpull($posts, 'getBloggerPHID');
|
|
$bloggers = id(new PhabricatorHandleQuery())
|
|
->setViewer($user)
|
|
->withPHIDs($blogger_phids)
|
|
->execute();
|
|
|
|
foreach ($posts as $post) {
|
|
$content[] = hsprintf('<entry>');
|
|
$content[] = phutil_tag('title', array(), $post->getTitle());
|
|
$content[] = phutil_tag('link', array('href' => $post->getViewURI()));
|
|
|
|
$content[] = phutil_tag('id', array(), PhabricatorEnv::getProductionURI(
|
|
'/phame/post/view/'.$post->getID().'/'));
|
|
|
|
$content[] = hsprintf(
|
|
'<author><name>%s</name></author>',
|
|
$bloggers[$post->getBloggerPHID()]->getFullName());
|
|
|
|
$content[] = phutil_tag(
|
|
'updated',
|
|
array(),
|
|
date('c', $post->getDateModified()));
|
|
|
|
$content[] = hsprintf(
|
|
'<content type="xhtml">'.
|
|
'<div xmlns="http://www.w3.org/1999/xhtml">%s</div>'.
|
|
'</content>',
|
|
$engine->getOutput($post, PhamePost::MARKUP_FIELD_BODY));
|
|
|
|
$content[] = hsprintf('</entry>');
|
|
}
|
|
|
|
$content = phutil_tag(
|
|
'feed',
|
|
array('xmlns' => 'http://www.w3.org/2005/Atom'),
|
|
$content);
|
|
|
|
return id(new AphrontFileResponse())
|
|
->setMimeType('application/xml')
|
|
->setContent($content);
|
|
}
|
|
|
|
}
|