Tue, 11 Nov 2003 20:34:00 +0000
[gaim-migrate @ 8091]
gaim_str_strip_linefeed strips carriage returns.. changing name accordingly.
| 3198 | 1 | #include "config.h" |
| 106 | 2 | #include "gaim.h" |
| 3 | ||
| 4 | #include <gtk/gtk.h> | |
| 5 | #include <stdlib.h> | |
| 6 | #include <unistd.h> | |
| 7 | #include <sys/types.h> | |
| 8 | #include <sys/stat.h> | |
| 9 | #include <string.h> | |
| 10 | #include <ctype.h> | |
| 11 | ||
| 5255 | 12 | #define FILECTL_PLUGIN_ID "core-filectl" |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
13 | static int check; |
|
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
14 | static time_t mtime; |
| 106 | 15 | |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
16 | static void init_file(); |
|
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
17 | static void check_file(); |
| 106 | 18 | |
| 19 | /* parse char * as if were word array */ | |
| 20 | char *getarg(char *, int, int); | |
| 21 | ||
| 22 | /* go through file and run any commands */ | |
| 23 | void run_commands() { | |
| 24 | struct stat finfo; | |
| 25 | char filename[256]; | |
| 26 | char buffer[1024]; | |
| 27 | char *command, *arg1, *arg2; | |
| 28 | FILE *file; | |
| 29 | ||
| 30 | sprintf(filename, "%s/.gaim/control", getenv("HOME")); | |
| 31 | ||
| 32 | file = fopen(filename, "r+"); | |
| 33 | while (fgets(buffer, sizeof buffer, file)) { | |
| 34 | if (buffer[strlen(buffer) - 1] == '\n') | |
| 35 | buffer[strlen(buffer) - 1] = 0; | |
|
5227
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
36 | gaim_debug(GAIM_DEBUG_MISC, "filectl", "read: %s\n", buffer); |
| 106 | 37 | command = getarg(buffer, 0, 0); |
| 2324 | 38 | if (!strncasecmp(command, "signon", 6)) { |
| 4491 | 39 | struct gaim_account *account = NULL; |
| 40 | GSList *accts = gaim_accounts; | |
| 2324 | 41 | arg1 = getarg(buffer, 1, 1); |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
42 | if (arg1) { |
| 4491 | 43 | while (accts) { |
| 44 | struct gaim_account *a = accts->data; | |
| 45 | if (!strcmp(a->username, arg1)) { | |
| 46 | account = a; | |
| 2324 | 47 | break; |
| 48 | } | |
| 4491 | 49 | accts = accts->next; |
| 2324 | 50 | } |
| 51 | free(arg1); | |
| 106 | 52 | } |
| 4491 | 53 | if (account) /* username found */ |
|
6036
285e48913c72
[gaim-migrate @ 6486]
Mark Doliner <markdoliner@pidgin.im>
parents:
5920
diff
changeset
|
54 | gaim_account_connect(account); |
| 106 | 55 | } else if (!strncasecmp(command, "signoff", 7)) { |
|
1047
783f8520d9a0
[gaim-migrate @ 1057]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
576
diff
changeset
|
56 | struct gaim_connection *gc = NULL; |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
57 | GSList *c = connections; |
|
1047
783f8520d9a0
[gaim-migrate @ 1057]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
576
diff
changeset
|
58 | arg1 = getarg(buffer, 1, 1); |
|
2766
9b5b40debf70
[gaim-migrate @ 2779]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2765
diff
changeset
|
59 | while (arg1 && c) { |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
60 | gc = c->data; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
61 | if (!strcmp(gc->username, arg1)) { |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
62 | break; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
63 | } |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
64 | gc = NULL; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
65 | c = c->next; |
| 2324 | 66 | } |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
67 | if (gc) |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
68 | signoff(gc); |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
69 | else if (!arg1) |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
70 | signoff_all(NULL, NULL); |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
71 | free(arg1); |
| 106 | 72 | } else if (!strncasecmp(command, "send", 4)) { |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5255
diff
changeset
|
73 | GaimConversation *c; |
| 106 | 74 | arg1 = getarg(buffer, 1, 0); |
| 75 | arg2 = getarg(buffer, 2, 1); | |
| 76 | c = find_conversation(arg1); | |
|
4359
cf899ee07d1d
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4168
diff
changeset
|
77 | if (!c) c = gaim_conversation_new(GAIM_CONV_IM, arg1); |
|
2906
6d1a38606840
[gaim-migrate @ 2919]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2766
diff
changeset
|
78 | write_to_conv(c, arg2, WFLAG_SEND, NULL, time(NULL), -1); |
|
6982
12f08de92674
[gaim-migrate @ 7538]
Mark Doliner <markdoliner@pidgin.im>
parents:
6371
diff
changeset
|
79 | serv_send_im(c->gc, arg1, arg2, 0); |
| 106 | 80 | free(arg1); |
| 81 | free(arg2); | |
| 82 | } else if (!strncasecmp(command, "away", 4)) { | |
| 83 | struct away_message a; | |
| 84 | arg1 = getarg(buffer, 1, 1); | |
| 85 | snprintf(a.message, 2048, "%s", arg1); | |
| 86 | a.name[0] = 0; | |
| 87 | do_away_message(NULL, &a); | |
| 88 | free(arg1); | |
| 3198 | 89 | } else if (!strncasecmp(command, "hide", 4)) { |
| 90 | hide_buddy_list(); | |
| 91 | } else if (!strncasecmp(command, "unhide", 6)) { | |
| 92 | unhide_buddy_list(); | |
| 106 | 93 | } else if (!strncasecmp(command, "back", 4)) { |
| 94 | do_im_back(); | |
| 95 | } else if (!strncasecmp(command, "quit", 4)) { | |
|
6179
4df73df94250
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6063
diff
changeset
|
96 | gaim_core_quit(); |
| 106 | 97 | } |
| 98 | free(command); | |
| 99 | } | |
| 100 | ||
| 101 | fclose(file); | |
| 102 | ||
| 103 | if (stat (filename, &finfo) != 0) | |
| 104 | return; | |
| 105 | mtime = finfo.st_mtime; | |
| 106 | } | |
| 107 | ||
| 108 | /* check to see if the size of the file is > 0. if so, run commands */ | |
| 109 | void init_file() { | |
| 110 | /* most of this was taken from Bash v2.04 by the FSF */ | |
| 111 | struct stat finfo; | |
| 112 | char file[256]; | |
| 113 | ||
| 114 | sprintf(file, "%s/.gaim/control", getenv("HOME")); | |
| 115 | ||
| 116 | if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) | |
| 117 | run_commands(); | |
| 118 | } | |
| 119 | ||
| 120 | /* check to see if we need to run commands from the file */ | |
| 121 | void check_file() { | |
| 122 | /* most of this was taken from Bash v2.04 by the FSF */ | |
| 123 | struct stat finfo; | |
| 124 | char file[256]; | |
| 125 | ||
| 126 | sprintf(file, "%s/.gaim/control", getenv("HOME")); | |
| 127 | ||
| 128 | if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) | |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
129 | if (mtime != finfo.st_mtime) { |
|
5227
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
130 | gaim_debug(GAIM_DEBUG_INFO, "filectl", |
|
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
131 | "control changed, checking\n"); |
| 106 | 132 | run_commands(); |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
133 | } |
| 106 | 134 | } |
| 135 | ||
| 136 | char *getarg(char *line, int which, int remain) { | |
| 137 | char *arr; | |
| 138 | char *val; | |
| 139 | int count = -1; | |
| 140 | int i; | |
| 141 | int state = 0; | |
| 142 | ||
| 143 | for (i = 0; i < strlen(line) && count < which; i++) { | |
| 144 | switch (state) { | |
| 145 | case 0: /* in whitespace, expecting word */ | |
| 146 | if (isalnum(line[i])) { | |
| 147 | count++; | |
| 148 | state = 1; | |
| 149 | } | |
| 150 | break; | |
| 151 | case 1: /* inside word, waiting for whitespace */ | |
| 152 | if (isspace(line[i])) { | |
| 153 | state = 0; | |
| 154 | } | |
| 155 | break; | |
| 156 | } | |
| 157 | } | |
| 158 | ||
| 159 | arr = strdup(&line[i - 1]); | |
| 160 | if (remain) | |
| 161 | return arr; | |
| 162 | ||
| 163 | for (i = 0; i < strlen(arr) && isalnum(arr[i]); i++); | |
| 164 | arr[i] = 0; | |
| 165 | val = strdup(arr); | |
| 166 | arr[i] = ' '; | |
| 167 | free(arr); | |
| 168 | return val; | |
| 169 | } | |
| 5255 | 170 | /* |
| 171 | * EXPORTED FUNCTIONS | |
| 172 | */ | |
| 173 | ||
| 174 | static gboolean | |
| 175 | plugin_load(GaimPlugin *plugin) | |
| 176 | { | |
| 177 | init_file(); | |
| 178 | check = g_timeout_add(5000, check_file, NULL); | |
| 179 | ||
| 180 | return TRUE; | |
| 181 | } | |
| 182 | ||
| 183 | static gboolean | |
| 184 | plugin_unload(GaimPlugin *plugin) | |
| 185 | { | |
| 186 | g_source_remove(check); | |
| 187 | ||
| 188 | return TRUE; | |
| 189 | } | |
| 190 | ||
| 191 | static GaimPluginInfo info = | |
| 192 | { | |
| 193 | 2, /**< api_version */ | |
| 194 | GAIM_PLUGIN_STANDARD, /**< type */ | |
| 195 | NULL, /**< ui_requirement */ | |
| 196 | 0, /**< flags */ | |
| 197 | NULL, /**< dependencies */ | |
| 198 | GAIM_PRIORITY_DEFAULT, /**< priority */ | |
| 199 | ||
| 200 | FILECTL_PLUGIN_ID, /**< id */ | |
| 201 | N_("Gaim File Control"), /**< name */ | |
| 202 | VERSION, /**< version */ | |
| 203 | /** summary */ | |
| 204 | N_("Allows you to control Gaim by entering commands in a file."), | |
| 205 | /** description */ | |
| 206 | N_("Allows you to control Gaim by entering commands in a file."), | |
| 207 | "Eric Warmenhoven <eric@warmenhoven.org>", /**< author */ | |
|
6371
e92b66ee5518
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6179
diff
changeset
|
208 | GAIM_WEBSITE, /**< homepage */ |
| 5255 | 209 | |
| 210 | plugin_load, /**< load */ | |
| 211 | plugin_unload, /**< unload */ | |
| 212 | NULL, /**< destroy */ | |
| 213 | ||
| 214 | NULL, /**< ui_info */ | |
| 215 | NULL /**< extra_info */ | |
| 216 | }; | |
| 217 | ||
| 218 | static void | |
|
5920
963bfdefee02
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
219 | init_plugin(GaimPlugin *plugin) |
| 5255 | 220 | { |
| 221 | } | |
| 222 | ||
| 6063 | 223 | GAIM_INIT_PLUGIN(filectl, init_plugin, info) |