diff options
author | Zach Copley <zach@status.net> | 2010-02-12 19:00:35 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-02-12 19:02:27 -0800 |
commit | f3a82e787c70e8cf749c79f22fe37ce6c9c9d4d3 (patch) | |
tree | e44584e632060d49f2ff325b4daf45c251f3dceb /actions/apitimelinegroup.php | |
parent | d6f1df8b76259acfc0d0566e8bf3610172b27884 (diff) |
Add OStatus PuSH hub and Salmon links back into user and group feeds
Diffstat (limited to 'actions/apitimelinegroup.php')
-rw-r--r-- | actions/apitimelinegroup.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index 45962fa76..3c74e36b5 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -138,7 +138,19 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction try { - $atom = new AtomNoticeFeed(); + // If this was called using an integer ID, i.e.: using the canonical + // URL for this group's feed, then pass the Group object into the feed, + // so the OStatus plugin, and possibly other plugins, can access it. + // Feels sorta hacky. -- Z + + $atom = null; + $id = $this->arg('id'); + + if (strval(intval($id)) === strval($id)) { + $atom = new AtomGroupNoticeFeed($this->group); + } else { + $atom = new AtomGroupNoticeFeed(); + } $atom->setId($id); $atom->setTitle($title); |