X-Git-Url: http://git.harvie.cz/?p=mirrors%2Flibpurple-core-answerscripts.git;a=blobdiff_plain;f=answerscripts.c;h=c26d37bc9cafaa8009c46f936e21cc37a517b3a4;hp=1bec4e6c446e3c4552be5bf153b702c43773d810;hb=2bcad731832754d3f67219355f1a9878bd38e27d;hpb=0636d441a2b6874f4e9419a0676a25343ad98dc8 diff --git a/answerscripts.c b/answerscripts.c index 1bec4e6..c26d37b 100755 --- a/answerscripts.c +++ b/answerscripts.c @@ -8,10 +8,12 @@ #define ANSWERSCRIPTS_TIMEOUT_INTERVAL 250 #define ANSWERSCRIPTS_LINE_LENGTH 4096 #define ENV_PREFIX "ANSW_" +#define PROTOCOL_PREFIX "prpl-" #include #include #include +#include #ifndef __WIN32__ #include @@ -63,6 +65,10 @@ static void received_im_msg_cb(PurpleAccount *account, char *who, char *buffer, //printf("\nHarvie received: %s: %s\n", who, message); //debug //purple_conv_im_send(purple_conversation_get_im_data(conv), ":-*"); //debug + //Get protocol ID + const char *protocol_id = purple_account_get_protocol_id(account); + if(!strncmp(protocol_id,PROTOCOL_PREFIX,strlen(PROTOCOL_PREFIX))) protocol_id += strlen(PROTOCOL_PREFIX); //trim out protocol prefix (eg.: "prpl-irc" => "irc") + //Get status PurpleStatus *status = purple_account_get_active_status(account); PurpleStatusType *type = purple_status_get_type(status); @@ -80,8 +86,9 @@ static void received_im_msg_cb(PurpleAccount *account, char *who, char *buffer, } //Export variables to environment - setenv(ENV_PREFIX "FROM", who, 1); setenv(ENV_PREFIX "MSG", message, 1); + setenv(ENV_PREFIX "FROM", who, 1); + setenv(ENV_PREFIX "PROTOCOL", protocol_id, 1); setenv(ENV_PREFIX "STATUS", status_id, 1); setenv(ENV_PREFIX "STATUS_MSG", status_msg, 1); @@ -122,7 +129,7 @@ static PurplePluginInfo info = { "core-answerscripts", "AnswerScripts", - "0.2.2", + "0.3.0", "Framework for hooking scripts to process received messages for libpurple clients", "This plugin will execute script ~/.purple/" ANSWERSCRIPT " " "or any other executable called " ANSWERSCRIPT " and found in purple_user_dir() "