Sat, 26 Apr 2003 17:36:52 +0000
[gaim-migrate @ 5597]
debug_printf -> gaim_debug
| 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 | ||
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
12 | static void *handle; |
|
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 | extern void do_quit(); | |
| 20 | ||
| 21 | /* parse char * as if were word array */ | |
| 22 | char *getarg(char *, int, int); | |
| 23 | ||
| 24 | /* go through file and run any commands */ | |
| 25 | void run_commands() { | |
| 26 | struct stat finfo; | |
| 27 | char filename[256]; | |
| 28 | char buffer[1024]; | |
| 29 | char *command, *arg1, *arg2; | |
| 30 | FILE *file; | |
| 31 | ||
| 32 | sprintf(filename, "%s/.gaim/control", getenv("HOME")); | |
| 33 | ||
| 34 | file = fopen(filename, "r+"); | |
| 35 | while (fgets(buffer, sizeof buffer, file)) { | |
| 36 | if (buffer[strlen(buffer) - 1] == '\n') | |
| 37 | buffer[strlen(buffer) - 1] = 0; | |
|
5227
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
38 | gaim_debug(GAIM_DEBUG_MISC, "filectl", "read: %s\n", buffer); |
| 106 | 39 | command = getarg(buffer, 0, 0); |
| 2324 | 40 | if (!strncasecmp(command, "signon", 6)) { |
| 4491 | 41 | struct gaim_account *account = NULL; |
| 42 | GSList *accts = gaim_accounts; | |
| 2324 | 43 | arg1 = getarg(buffer, 1, 1); |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
44 | if (arg1) { |
| 4491 | 45 | while (accts) { |
| 46 | struct gaim_account *a = accts->data; | |
| 47 | if (!strcmp(a->username, arg1)) { | |
| 48 | account = a; | |
| 2324 | 49 | break; |
| 50 | } | |
| 4491 | 51 | accts = accts->next; |
| 2324 | 52 | } |
| 53 | free(arg1); | |
| 106 | 54 | } |
| 4491 | 55 | if (account) /* username found */ |
| 56 | serv_login(account); | |
| 106 | 57 | } else if (!strncasecmp(command, "signoff", 7)) { |
|
1047
783f8520d9a0
[gaim-migrate @ 1057]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
576
diff
changeset
|
58 | struct gaim_connection *gc = NULL; |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
59 | GSList *c = connections; |
|
1047
783f8520d9a0
[gaim-migrate @ 1057]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
576
diff
changeset
|
60 | arg1 = getarg(buffer, 1, 1); |
|
2766
9b5b40debf70
[gaim-migrate @ 2779]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2765
diff
changeset
|
61 | while (arg1 && c) { |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
62 | gc = c->data; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
63 | if (!strcmp(gc->username, arg1)) { |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
64 | break; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
65 | } |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
66 | gc = NULL; |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
67 | c = c->next; |
| 2324 | 68 | } |
|
2765
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
69 | if (gc) |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
70 | signoff(gc); |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
71 | else if (!arg1) |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
72 | signoff_all(NULL, NULL); |
|
d38baebbdb6b
[gaim-migrate @ 2778]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2324
diff
changeset
|
73 | free(arg1); |
| 106 | 74 | } else if (!strncasecmp(command, "send", 4)) { |
|
4359
cf899ee07d1d
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4168
diff
changeset
|
75 | struct gaim_conversation *c; |
| 106 | 76 | arg1 = getarg(buffer, 1, 0); |
| 77 | arg2 = getarg(buffer, 2, 1); | |
| 78 | c = find_conversation(arg1); | |
|
4359
cf899ee07d1d
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4168
diff
changeset
|
79 | if (!c) c = gaim_conversation_new(GAIM_CONV_IM, arg1); |
|
2906
6d1a38606840
[gaim-migrate @ 2919]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2766
diff
changeset
|
80 | write_to_conv(c, arg2, WFLAG_SEND, NULL, time(NULL), -1); |
| 3061 | 81 | serv_send_im(c->gc, arg1, arg2, -1, 0); |
| 106 | 82 | free(arg1); |
| 83 | free(arg2); | |
| 84 | } else if (!strncasecmp(command, "away", 4)) { | |
| 85 | struct away_message a; | |
| 86 | arg1 = getarg(buffer, 1, 1); | |
| 87 | snprintf(a.message, 2048, "%s", arg1); | |
| 88 | a.name[0] = 0; | |
| 89 | do_away_message(NULL, &a); | |
| 90 | free(arg1); | |
| 3198 | 91 | } else if (!strncasecmp(command, "hide", 4)) { |
| 92 | hide_buddy_list(); | |
| 93 | } else if (!strncasecmp(command, "unhide", 6)) { | |
| 94 | unhide_buddy_list(); | |
| 106 | 95 | } else if (!strncasecmp(command, "back", 4)) { |
| 96 | do_im_back(); | |
| 97 | } else if (!strncasecmp(command, "quit", 4)) { | |
| 98 | do_quit(); | |
| 99 | } | |
| 100 | free(command); | |
| 101 | } | |
| 102 | ||
| 103 | fclose(file); | |
| 104 | ||
| 105 | if (stat (filename, &finfo) != 0) | |
| 106 | return; | |
| 107 | mtime = finfo.st_mtime; | |
| 108 | } | |
| 109 | ||
|
1047
783f8520d9a0
[gaim-migrate @ 1057]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
576
diff
changeset
|
110 | char *gaim_plugin_init(GModule *h) { |
| 106 | 111 | handle = h; |
| 112 | init_file(); | |
| 4168 | 113 | check = g_timeout_add(5000, check_file, NULL); |
| 2324 | 114 | return NULL; |
| 106 | 115 | } |
| 116 | ||
| 117 | void gaim_plugin_remove() { | |
| 4168 | 118 | g_source_remove(check); |
| 106 | 119 | } |
| 120 | ||
| 3551 | 121 | struct gaim_plugin_description desc; |
| 122 | struct gaim_plugin_description *gaim_plugin_desc() { | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
123 | desc.api_version = GAIM_PLUGIN_API_VERSION; |
| 3551 | 124 | desc.name = g_strdup("Gaim File Control"); |
| 125 | desc.version = g_strdup(VERSION); | |
| 126 | desc.description = g_strdup("Allows you to control Gaim by entering commands in aa file."); | |
| 127 | desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); | |
| 128 | desc.url = g_strdup(WEBSITE); | |
| 129 | return &desc; | |
| 130 | } | |
| 131 | ||
| 106 | 132 | char *name() { |
| 133 | return "Gaim File Control"; | |
| 134 | } | |
| 135 | ||
| 136 | char *description() { | |
| 137 | return "Allows you to control gaim by entering commands in a file."; | |
| 138 | } | |
| 139 | ||
| 140 | /* check to see if the size of the file is > 0. if so, run commands */ | |
| 141 | void init_file() { | |
| 142 | /* most of this was taken from Bash v2.04 by the FSF */ | |
| 143 | struct stat finfo; | |
| 144 | char file[256]; | |
| 145 | ||
| 146 | sprintf(file, "%s/.gaim/control", getenv("HOME")); | |
| 147 | ||
| 148 | if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) | |
| 149 | run_commands(); | |
| 150 | } | |
| 151 | ||
| 152 | /* check to see if we need to run commands from the file */ | |
| 153 | void check_file() { | |
| 154 | /* most of this was taken from Bash v2.04 by the FSF */ | |
| 155 | struct stat finfo; | |
| 156 | char file[256]; | |
| 157 | ||
| 158 | sprintf(file, "%s/.gaim/control", getenv("HOME")); | |
| 159 | ||
| 160 | if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) | |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
161 | if (mtime != finfo.st_mtime) { |
|
5227
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
162 | gaim_debug(GAIM_DEBUG_INFO, "filectl", |
|
6b44f7901f94
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
163 | "control changed, checking\n"); |
| 106 | 164 | run_commands(); |
|
179
3d1884b2ad14
[gaim-migrate @ 189]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
106
diff
changeset
|
165 | } |
| 106 | 166 | } |
| 167 | ||
| 168 | char *getarg(char *line, int which, int remain) { | |
| 169 | char *arr; | |
| 170 | char *val; | |
| 171 | int count = -1; | |
| 172 | int i; | |
| 173 | int state = 0; | |
| 174 | ||
| 175 | for (i = 0; i < strlen(line) && count < which; i++) { | |
| 176 | switch (state) { | |
| 177 | case 0: /* in whitespace, expecting word */ | |
| 178 | if (isalnum(line[i])) { | |
| 179 | count++; | |
| 180 | state = 1; | |
| 181 | } | |
| 182 | break; | |
| 183 | case 1: /* inside word, waiting for whitespace */ | |
| 184 | if (isspace(line[i])) { | |
| 185 | state = 0; | |
| 186 | } | |
| 187 | break; | |
| 188 | } | |
| 189 | } | |
| 190 | ||
| 191 | arr = strdup(&line[i - 1]); | |
| 192 | if (remain) | |
| 193 | return arr; | |
| 194 | ||
| 195 | for (i = 0; i < strlen(arr) && isalnum(arr[i]); i++); | |
| 196 | arr[i] = 0; | |
| 197 | val = strdup(arr); | |
| 198 | arr[i] = ' '; | |
| 199 | free(arr); | |
| 200 | return val; | |
| 201 | } |