mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-10 04:21:02 +00:00
107 lines
2.6 KiB
C
107 lines
2.6 KiB
C
|
// vim:foldmethod=marker:syntax=lpc:noexpandtab
|
|||
|
//
|
|||
|
// yeah yeah twitter.. why twitter?
|
|||
|
// http://about.psyc.eu/Twitter
|
|||
|
|
|||
|
#include <net.h>
|
|||
|
|
|||
|
persistent int lastid;
|
|||
|
|
|||
|
volatile object feed;
|
|||
|
|
|||
|
parse(string body) {
|
|||
|
mixed wurst;
|
|||
|
string nick;
|
|||
|
object o;
|
|||
|
mapping d, p;
|
|||
|
int i;
|
|||
|
|
|||
|
//body = read_file("/net/twitter/many.json");
|
|||
|
if (!body || body == "") {
|
|||
|
P1(("%O failed to get its timeline.\n", ME))
|
|||
|
return;
|
|||
|
}
|
|||
|
//#if DEBUG > 0
|
|||
|
rm(DATA_PATH "timeline.json");
|
|||
|
write_file(DATA_PATH "timeline.json", body);
|
|||
|
P4((body))
|
|||
|
//#endif
|
|||
|
unless (pointerp(wurst = parse_json(body))) {
|
|||
|
P1(("%O failed to parse its timeline.\n", ME))
|
|||
|
return;
|
|||
|
}
|
|||
|
i=sizeof(wurst)-1;
|
|||
|
if (wurst[i]["id"] <= lastid) {
|
|||
|
P1(("%O received old stuff.\n", ME))
|
|||
|
return;
|
|||
|
}
|
|||
|
lastid = wurst[i]["id"];
|
|||
|
save_object(DATA_PATH "twitter");
|
|||
|
for (; i>=0; i--) {
|
|||
|
d = wurst[i];
|
|||
|
unless (mappingp(d)) {
|
|||
|
P1(("%O got a broken tweet: %O.\n", ME, d))
|
|||
|
continue;
|
|||
|
}
|
|||
|
p = d["user"];
|
|||
|
unless (mappingp(p)) {
|
|||
|
P1(("%O got a userless tweet.\n", ME))
|
|||
|
continue;
|
|||
|
}
|
|||
|
unless (nick = p["screen_name"]) {
|
|||
|
P1(("%O got a nickless tweeter.\n", ME))
|
|||
|
continue;
|
|||
|
}
|
|||
|
PT((" %O", nick))
|
|||
|
o = find_place(nick);
|
|||
|
|
|||
|
// _notice_update_twitter ?
|
|||
|
sendmsg(o, "_message_twitter", d["text"], ([
|
|||
|
// should i send text as _action?
|
|||
|
"_nick": nick,
|
|||
|
// _count seems to be the better word for this
|
|||
|
"_amount_followers": p["followers_count"],
|
|||
|
"_color": "#"+ p["profile_text_color"],
|
|||
|
"_description": p["description"],
|
|||
|
"_uniform_photo": p["profile_image_url"],
|
|||
|
"_page": p["url"],
|
|||
|
"_name": p["name"],
|
|||
|
// "_contact_twitter": p["id"],
|
|||
|
"_description_agent_HTML": d["source"],
|
|||
|
"_reference_reply": d["in_reply_to_screen_name"],
|
|||
|
// "_twit": d["id"],
|
|||
|
]), "/"); // send as root
|
|||
|
|
|||
|
// der spiegel u.a. twittern <20>brigens in latin-1
|
|||
|
// w<>hrend psyc utf-8 erwartet.. eine char guess engine
|
|||
|
// muss her.. FIXME
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
fetch() {
|
|||
|
feed -> content( #'parse, 0, 1 );
|
|||
|
feed -> fetch("http://twitter.com/statuses/friends_timeline.json"
|
|||
|
"?since_id="+ lastid +"&count=123");
|
|||
|
call_out( #'fetch, 9 * 60 );
|
|||
|
}
|
|||
|
|
|||
|
create() {
|
|||
|
mapping config;
|
|||
|
object o = find_object(CONFIG_PATH "config");
|
|||
|
|
|||
|
if (o) config = o->qConfig();
|
|||
|
if (!config) {
|
|||
|
P1(("No configuration for twitter gateway found.\n");
|
|||
|
destruct(ME);
|
|||
|
return;
|
|||
|
}
|
|||
|
restore_object(DATA_PATH "twitter");
|
|||
|
|
|||
|
// we could even choose to inherit this instead...
|
|||
|
feed = clone_object(HTTP_PATH "fetch");
|
|||
|
//feed -> sAgent(SERVER_VERSION " builtin Twitter to PSYC gateway");
|
|||
|
feed -> sAuth(config["nickname"], config["password"]);
|
|||
|
call_out( #'fetch, 14 );
|
|||
|
}
|
|||
|
|