summaryrefslogtreecommitdiff
path: root/plugins/TwitterBridge/daemons
AgeCommit message (Collapse)Author
2010-09-18* i18n/L10n updatesSiebrand Mazeland
* whitespace updates.
2010-09-07text substitution is Unicode-aware for twitterstatusfetcherEvan Prodromou
2010-09-07debug statements for setting/getting last idEvan Prodromou
2010-09-07Store foreign ID for synch info, not user IDEvan Prodromou
2010-09-07remove data dump of retrieved statusesEvan Prodromou
2010-09-07use and save since_id parameter for home_timelineEvan Prodromou
2010-09-07save Twitter mentions as StatusNet repliesEvan Prodromou
2010-09-07add back in # and @ for linksEvan Prodromou
2010-09-07add Twitter-approved links to Twitter statusesEvan Prodromou
2010-09-07truncate retweeted stuff if it's too longEvan Prodromou
2010-09-07correctly mark repeats from Twitter as non-localEvan Prodromou
2010-09-07correctly check for local notice to status mappings when notice originated hereEvan Prodromou
2010-09-07use Notice_to_status to check for duplicatesEvan Prodromou
2010-09-07Save notice-to-status mapping in its own tableEvan Prodromou
Introduce a table mapping notices to Twitter statuses. Initialize this table at checkSchema() time. Save the mapping when we push or pull statuses. Use the table to determine if a notice has a Twitter equivalent.
2010-09-07do our own repeating so we can pass in a uriEvan Prodromou
2010-09-07remove require_once for disappeared TwitterBasicAuthClientEvan Prodromou
2010-09-07remove basic auth code for Twitter since it's no longer supportedEvan Prodromou
2010-09-07switch twitterstatusfetcher from friends_timeline to home_timelineEvan Prodromou
2010-09-07debug code to dump new status dataEvan Prodromou
2010-09-07move inbox insert code to status saver main loopEvan Prodromou
2010-09-07some info notices in twitter status fetch for repeats and repliesEvan Prodromou
2010-09-07if something's a retweet, save it as a repeat in bridgeEvan Prodromou
2010-09-07save reply status for Twitter noticesEvan Prodromou
2010-09-07don't save statuses from protected usersEvan Prodromou
2010-03-27Some fixes to make the twitterstatusfetcher behave better in a multi-site ↵Zach Copley
configuration
2010-03-04Another typoroot
2010-02-04- Fix cache handling in TwitterStatusFetcherZach Copley
- Other stability fixes
2010-01-12Merge branch '0.9.x' into inblobEvan Prodromou
2010-01-12Major refactoring of queue handlers to support running multiple sites in one ↵Brion Vibber
daemon. Key changes: * Initialization code moved from common.php to StatusNet class; can now switch configurations during runtime. * As a consequence, configuration files must now be idempotent... Be careful with constant, function or class definitions. * Control structure for daemons/QueueManager/QueueHandler has been refactored; the run loop is now managed by IoMaster run via scripts/queuedaemon.php IoManager subclasses are woken to handle socket input or polling, and may cover multiple sites. * Plugins can implement notice queue handlers more easily by registering a QueueHandler class; no more need to add a daemon. The new QueueDaemon runs from scripts/queuedaemon.php: * This replaces most of the old *handler.php scripts; they've been refactored to the bare handler classes. * Spawns multiple child processes to spread load; defaults to CPU count on Linux and Mac OS X systems, or override with --threads=N * When multithreaded, child processes are automatically respawned on failure. * Threads gracefully shut down and restart when passing a soft memory limit (defaults to 90% of memory_limit), limiting damage from memory leaks. * Support for UDP-based monitoring: http://www.gitorious.org/snqmon Rough control flow diagram: QueueDaemon -> IoMaster -> IoManager QueueManager [listen or poll] -> QueueHandler XmppManager [ping & keepalive] XmppConfirmManager [poll updates] Todo: * Respawning features not currently available running single-threaded. * When running single-site, configuration changes aren't picked up. * New sites or config changes affecting queue subscriptions are not yet handled without a daemon restart. * SNMP monitoring output to integrate with general tools (nagios, ganglia) * Convert XMPP confirmation message sends to use stomp queue instead of polling * Convert xmppdaemon.php to IoManager? * Convert Twitter status, friends import polling daemons to IoManager * Clean up some error reporting and failure modes * May need to adjust queue priorities for best perf in backlog/flood cases Detailed code history available in my daemon-work branch: http://www.gitorious.org/~brion/statusnet/brion-fixes/commits/daemon-work
2010-01-09use Inbox in twitterstatusfetcherEvan Prodromou
2009-12-04Don't try to broadcast the notice if something went wrong.Zach Copley
2009-12-04Make imported Twitter notices show up via real time plugins.Zach Copley
2009-12-02Remove useless debugging statementZach Copley
2009-11-09Revert "Remove more contractions"Brion Vibber
This reverts commit 5ab709b73977131813884558bf56d97172a7aa26. Missed this one yesterday...
2009-11-08Merge branch '0.9.x' of git://gitorious.org/statusnet/mainline into 0.9.xSiebrand Mazeland
2009-11-08Remove more contractionsSiebrand Mazeland
* doesn't * won't * isn't * don't
2009-11-08Revert "* [Cc]an't -> [Cc]annot"Brion Vibber
This reverts commit 0ab17f382b9993ada3d12d4cdace72cca53fb545.
2009-11-08* [Cc]an't -> [Cc]annotSiebrand Mazeland
* [Cc]ould't -> [Cc]ould not
2009-11-02Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, ↵Brion Vibber
adding redirect handling and convenience functions. Caching support will be added in future work after unit tests have been added. * extlib: add PEAR HTTP_Request2 0.4.1 alpha * extlib: update PEAR Net_URL2 to 0.3.0 beta for HTTP_Request2 compatibility * moved direct usage of CURL and file_get_contents to HTTPClient class, excluding external-sourced libraries * adapted GeonamesPlugin for new HTTPResponse interface Note some plugins haven't been fully tested yet.
2009-11-02Revert "Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 ↵Brion Vibber
package, adding redirect handling and convenience functions." Going to restructure a little more before finalizing this... This reverts commit fa37967858c3c29000797e510e5f98aca8ab558f.
2009-11-02Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, ↵Brion Vibber
adding redirect handling and convenience functions. Caching support will be added in future work after unit tests have been added. * extlib: add PEAR HTTP_Request2 0.4.1 alpha * extlib: update PEAR Net_URL2 to 0.3.0 beta for HTTP_Request2 compatibility * moved direct usage of CURL and file_get_contents to HTTPClient class, excluding external-sourced libraries Note some plugins haven't been tested yet.
2009-10-14Make queuing and daemons work via eventsZach Copley
2009-09-08Merge branch '0.9.x' into pluginize-twitter-bridgeZach Copley
Conflicts: plugins/TwitterBridge/twitterauthorization.php
2009-08-26Moved the rest of the Twitter stuff into the TwitterBridge pluginZach Copley