summaryrefslogtreecommitdiff
path: root/plugins/OStatus/OStatusPlugin.php
AgeCommit message (Collapse)Author
2010-02-22OStatus: initial hookup of remote group membership (notice delivery not yet ↵Brion Vibber
working quite right) - added a temp config var to disable salmon magic signatures until they're working consistently
2010-02-22Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingSarven Capadisli
2010-02-22Added link to Subscriptions page to XHR get the ostatus sub formSarven Capadisli
2010-02-22Merge remote branch 'statusnet/testing' into testingJames Walker
2010-02-22adding extlib for Crypt_RSAJames Walker
2010-02-21some info code for usersalmon.phpEvan Prodromou
2010-02-21Merge branch 'testing' of gitorious.org:statusnet/mainline into testingBrion Vibber
2010-02-21OStatus: record source profile & saving method in ostatus_source table; this ↵Brion Vibber
allows us to distinguish posts that have come through an unverified group feed
2010-02-21hook in OStatusPlugin to return Ostatus_profile URIs where applicableEvan Prodromou
2010-02-21Wasn't putting in namespaces for reply salmonsEvan Prodromou
2010-02-21Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingEvan Prodromou
2010-02-21Notice::getReplies() returns array of profile IDsEvan Prodromou
2010-02-21OStatus: drop the remnants of feedsubsettings, replaced by ostatussub and no ↵Brion Vibber
longer linked in UI
2010-02-21Do mention lookup for Webfinger accounts in OStatusPluginEvan Prodromou
2010-02-21OStatus feedsub fixlets:Brion Vibber
- actually udpate feedsub.last_update when we get a new PuSH update in - move incoming PuSH processing to a queue handler to minimize time spent before POST return, as recommended by PuSH spec. When queues are disabled this'll still be handled immediately.
2010-02-21Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-02-21correct actor for OStatusPlugin::onEndUnsubscribe()Evan Prodromou
2010-02-21add activity:subject to atom feedsEvan Prodromou
2010-02-21use notifyActivity() for notifications in OStatusPluginEvan Prodromou
2010-02-20do some double-checks on favor and disfavor handlers in OStatusPluginEvan Prodromou
2010-02-20Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingEvan Prodromou
Conflicts: plugins/OStatus/OStatusPlugin.php
2010-02-20Add support for favor and disfavor notificationEvan Prodromou
Added support for favoring and disfavoring in OStatusPlugin. Needed to represent the Notice as an activity:object, so added some code for that in lib/activity.php. Also, made some small changes to OStatusPlugin so it handled having a non-default argument $object correctly.
2010-02-20OStatus: send favorite/unfavorite notifications to remote authorsBrion Vibber
2010-02-20OStatus: fix regressions in plugin & usersalmon action. Sub/unsub ↵Brion Vibber
notifications are working again.
2010-02-20add hooks for OStatus notification on subscribe/unsubscribeEvan Prodromou
2010-02-20Move some salmon processing to a superclassEvan Prodromou
Moved some salmon processing to a superclass so we could handle group salmon posts, too.
2010-02-19OStatus: sub/unsub notifications working again. Fixed up autodetection of ↵Brion Vibber
feed info at profile setup time
2010-02-19OStatus: hooked up follow/unfollow events on Salmon endpoint to ↵Brion Vibber
create/destroy remote subscriber relationships
2010-02-18OStatus refactoring to clean up profile vs feed and fix up subscription issues.Brion Vibber
PuSH subscription maintenance broken back out to FeedSub, letting Ostatus_profile deal with the profile level (user or group, with unique id URI)
2010-02-18OStatus sub/unsub updates:Brion Vibber
- fix for PuSH unsub verification - send Salmon notification on unsub
2010-02-17Merge branch 'testing' into 0.9.xBrion Vibber
2010-02-17htmloutputter->script() special cases src's that begin with plugin/ or ↵Craig Andrews
local/ so that plugins don't need to include common_path() in every call to $action->script() Adjust plugins to not call common_path() when it's not necessary Fix minify plugin
2010-02-17OStatus: override source link with the source domain and link to original ↵Brion Vibber
message
2010-02-16add a couple of FIXME commentsEvan Prodromou
2010-02-13Dialogbox for OStatus remote subscriptionSarven Capadisli
2010-02-13Added dialogbox styles for OStatus subscribe formSarven Capadisli
2010-02-13Using the new remote subscription event and updated subscribe labelSarven Capadisli
2010-02-12Add OStatus PuSH hub and Salmon links back into user and group feedsZach Copley
2010-02-12OStatus: renamed feedinfo table to ostatus_profile -- will cover remote ↵Brion Vibber
ostatus people and groups whether a subscription's active or not (maintains identity over unsub/resub, and between subscribers and subscribees)
2010-02-11OStatus: fix salmon link on Atom feeds; add a url spec for group feeds as ↵Brion Vibber
well (endpoint needs impl)
2010-02-11OStatus: garbage collect unused PuSH subscriptions when the last local ↵Brion Vibber
subscriber unsubs
2010-02-10OStatus PuSH fixes:Brion Vibber
* HMAC now calculated correctly - confirmed interop with Google's public hub * Can optionally use an external PuSH hub, set URL in $config['ostatus']['hub'] (may have issues in replication environment, and will ping the hub for every update rather than just those with subscribers) Internal hub will still function when this is set, but won't be advertised. Warning: setting this, then turning it off later will break subscriptions as that hub will no longer receive pings.
2010-02-09removing the webfinger hack for Notice::asAtomEntry since salmon can use a ↵James Walker
profile URL
2010-02-09moving salmon endpoint under 'main/'James Walker
2010-02-09OStatus partial support for group subscriptions:Brion Vibber
* detection of group feeds is currently a nasty hack based on presence of '/groups/' in URL -- should use some property on the feed? * listing for the remote group is kinda cruddy; needs to be named more cleanly * still need to establish per-author profiles (easier once we have the updated Atom code in) * group delivery probably not right yet * saving of group messages still triggering some weird behavior Added support for since_id and max_id on group timeline feeds as a free extra. Enjoy!
2010-02-09in progress Salmon responsesJames Walker
2010-02-09discovery piece - hand merged :PJames Walker
2010-02-08OStatus cleanup...Brion Vibber
* Treat linkless feed posts as status updates; drop the "New post:" prefix and quotes on them. * Use stable user IDs for atom/rss2 feed links instead of unstable nicknames * Pull Atom feed preferentially when subscribing -- can now put the remote user's profile page straight into the feed subscription form and get to the right place. * Clean up naming for push endpoints
2010-02-08First steps on converting FeedSub into the pub/sub basis for OStatus ↵Brion Vibber
communications: * renamed FeedSub plugin to OStatus * now setting avatar on subscriptions * general fixes for subscription * integrated PuSH hub to handle only user timelines on canonical ID url; sends updates directly * set $config['feedsub']['nohub'] = true to test w/ foreign feeds that don't have hubs (won't actually receive updates though) * a few bits of code documentation * HMAC support for verified distributions (safest if sub setup is on HTTPS) And a couple core changes: * minimizing HTML output for exceptions in API requests to aid in debugging * fix for rel=self link in apitimelineuser when id given This does not not yet include any of the individual subscription management (Salmon notifications for sub/unsub, etc) nor a nice UI for user subscriptions. Needs some further cleanup to treat posts as status updates instead of link references.