#include #include #include #define BLAME "!configuration" #define DONT_REWRITE_NICKS #define PLACE_HISTORY #define PLACE_OWNED #define HISTORY_GLIMPSE 12 #include inherit NET_PATH "place/threads"; volatile mixed lastTry; volatile string owner; volatile string channel; #ifdef TWITTER volatile object twitter; #endif #ifdef IDENTICA volatile object identica; #endif load(name, keep) { P3((">> userthreads:load(%O, %O)\n", name, keep)) sscanf(name, "~%s#%s", owner, channel); vSet("owners", ([ owner: 0 ])); vSet("privacy", "private"); vSet("twitter", 0); vSet("identica", 0); vSet("_restrict_invitation", BLAME); vSet("_filter_conversation", BLAME); return ::load(name, keep); } enter(source, mc, data, vars) { P3((">> userthreads:enter(%O, %O, %O, %O)\n", source, mc, data, vars)) object p = summon_person(owner, NET_PATH "user"); string src = objectp(source) ? psyc_name(source) : source; unless (v("privacy") == "public" || (p && (p == source || qAide(src) || (objectp(source) && qAide(source->qNameLower())) || p->qFriend(source) || p->qFollower(source)))) { sendmsg(source, "_error_place_enter_necessary_invitation", "[_nick_place] can only be entered upon invitation.", ([ "_nick_place" : qName() ]) ); if (source != lastTry) { castmsg(ME, "_failure_place_enter_necessary_invitation", "Admission into [_nick_place] denied for uninvited user [_nick].", vars); lastTry = source; } return 0; } if (p == source) { p->sChannel(MYNICK); #ifdef TWITTER if (v("twitter") && !twitter) twitter = clone_object(NET_PATH "twitter/client")->load(source); #endif #ifdef IDENTICA if (v("identica") && !identica) identica = clone_object(NET_PATH "identica/client")->load(source); #endif } return ::enter(source, mc, data, vars); } _request_add(source, mc, data, vars, b) { P3((">> userthreads:_request_add(%O, %O, %O, %O, %O)\n", source, mc, data, vars, b)) unless (vars["_person"]) { sendmsg(source, "_warning_usage_add", "Usage: /add ", ([ ])); return 1; } object p = summon_person(owner, NET_PATH "user"); object target = summon_person(vars["_person"], NET_PATH "user"); string ni; if (objectp(target)) { ni = target->qName(); } else { target = vars["_person"]; mixed *u = parse_uniform(target); if (u) ni = u[UNick]; } unless (ni && p && (p->qFriend(target) || p->qFollower(target))) { sendmsg(source, "_error_request_add", // FIXMC "Error: [_person] is not a friend or follower.", ([ "_person": vars["_person"]])); return 1; } string _mc = "_notice_place_enter_automatic_subscription_follow"; sendmsg(target, _mc, "You're now following [_nick_place].", (["_nick_place" : qName()]), source); //insert_member(target, mc, 0, (["_nick": ni]), ni); return 1; } _request_remove(source, mc, data, vars, b) { P3((">> userthreads:_request_remove(%O, %O, %O, %O, %O)\n", source, mc, data, vars, b)) unless (vars["_person"]) { sendmsg(source, "_warning_usage_remove", "Usage: /remove ", ([ ])); return 1; } object p = summon_person(owner, NET_PATH "user"); object target = summon_person(vars["_person"], NET_PATH "user") || vars["_person"]; unless (p && (qMember(target) || p->qFriend(target) || p->qFollower(target))) { sendmsg(source, "_error_request_remove", // FIXMC "Can't remove: [_person] is not a friend or follower.", ([ "_person": vars["_person"]])); return 1; } string _mc = "_notice_place_leave_automatic_subscription_follow"; sendmsg(target, _mc, "You're no longer following [_nick_place].", (["_nick_place" : qName()]), source); remove_member(target); return 1; } // set privacy: private or public // - private: only friends & invited people can enter (default) // - public: anyone can enter _request_privacy(source, mc, data, vars, b) { P3((">> userthreads:_request_privace(%O, %O, %O, %O, %O)\n", source, mc, data, vars, b)) string p = vars["_privacy"]; if (p == "public" || p == "private") { vSet("privacy", p); save(); } sendmsg(source, "_status_privacy", "Privacy is: [_privacy].", (["_privacy": v("privacy")])); return 1; } #ifdef TWITTER _request_twitter(source, mc, data, vars, b) { string sw = vars["_switch"]; if (sw == "on" || sw == "enabled" || sw == "1") { unless (twitter) twitter = clone_object(NET_PATH "twitter/client")->load(source); vSet("twitter", 1); save(); } else if (sw == "off" || sw == "disabled" || sw == "0") { if (twitter) twitter = 0; vSet("twitter", 0); save(); } sendmsg(source, "_status_twitter", "Twitter submission is [_status].", (["_status": v("twitter") ? "enabled" : "disabled"])); return 1; } #endif #ifdef IDENTICA _request_identica(source, mc, data, vars, b) { string sw = vars["_switch"]; if (sw == "on" || sw == "enabled" || sw == "1") { unless (identica) identica = clone_object(NET_PATH "identica/client")->load(source); vSet("identica", 1); save(); } else if (sw == "off" || sw == "disabled" || sw == "0") { if (identica) identica = 0; vSet("identica", 0); save(); } sendmsg(source, "_status_identica", "Identi.ca submission is [_status].", (["_status": v("identica") ? "enabled" : "disabled"])); return 1; } #endif addEntry(text, unick, thread) { if (::addEntry(text, unick, thread)) { #ifdef TWITTER if (v("twitter") && twitter) twitter->status_update(text); #endif #ifdef IDENTICA if (v("identica") && identica) identica->status_update(text); #endif } } htMain(int limit, int offset) { return ::htMain(limit, offset, channel); } canPost(snicker) { return qOwner(snicker); } isPublic() { return vQuery("privacy") == "public"; } showWebLog() { return 0; } qChannel() { return channel; } qHistoryGlimpse() { return HISTORY_GLIMPSE; } psycName() { return MYLOWERNICK; } pathName() { return regreplace(MYNICK, "#", "/", 1); }