Mercurial > pidgin.yaz
view plugins/filectl.c @ 221:b2f9f629525e
[gaim-migrate @ 231]
Added on the beginnings of file sending. Win clients can now figure out which
file you're *trying* to send them, but can't get it.
The AIM method of Get File is really fscked up, IMHO. I don't know if any of
you are familiar with it, but I'll describe it. Some user decides they want
to download a file from another user, so they choose Get File. It then returns
a list of files available from that person, and they can choose which ones they
want to download.
The other person can't decide on a user-by-user basis which files are listed,
only if any files are listed at all (not allowing people to download them).
The way I'm going to implement it is when someone gets a message that another
person is trying to download a file from them, it asks them which file they
want to make available. You can only do one file at a time this way, but that's
tough if you want to be downloading more than one file. Use gnutella or FTP or
something that's better designed for it than AIM. But the way the win AIM
clients are now, it acts as a public ftp server, and I think it shouldn't.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 07 May 2000 01:50:06 +0000 |
parents | 8d8faeab01f6 |
children | bb22fb4a7d39 |
line wrap: on
line source
#define GAIM_PLUGINS #include "gaim.h" #include <gtk/gtk.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <ctype.h> static void *handle; static int check; static time_t mtime; static void init_file(); static void check_file(); extern void dologin(GtkWidget *, GtkWidget *); extern void do_quit(); /* parse char * as if were word array */ char *getarg(char *, int, int); /* go through file and run any commands */ void run_commands() { struct stat finfo; char filename[256]; char buffer[1024]; char *command, *arg1, *arg2; FILE *file; sprintf(filename, "%s/.gaim/control", getenv("HOME")); file = fopen(filename, "r+"); while (fgets(buffer, sizeof buffer, file)) { if (buffer[strlen(buffer) - 1] == '\n') buffer[strlen(buffer) - 1] = 0; sprintf(debug_buff, "read: %s\n", buffer); debug_print(debug_buff); command = getarg(buffer, 0, 0); if (!strncasecmp(command, "signon", 6)) { if (!blist) { show_login(); dologin(NULL, NULL); } } else if (!strncasecmp(command, "signoff", 7)) { signoff(); } else if (!strncasecmp(command, "send", 4)) { struct conversation *c; arg1 = getarg(buffer, 1, 0); arg2 = getarg(buffer, 2, 1); c = find_conversation(arg1); if (!c) c = new_conversation(arg1); write_to_conv(c, arg2, WFLAG_SEND); serv_send_im(arg1, arg2, 0); free(arg1); free(arg2); } else if (!strncasecmp(command, "away", 4)) { struct away_message a; arg1 = getarg(buffer, 1, 1); snprintf(a.message, 2048, "%s", arg1); a.name[0] = 0; do_away_message(NULL, &a); free(arg1); } else if (!strncasecmp(command, "back", 4)) { do_im_back(); } else if (!strncasecmp(command, "quit", 4)) { do_quit(); } free(command); } fclose(file); if (stat (filename, &finfo) != 0) return; mtime = finfo.st_mtime; } void gaim_plugin_init(void *h) { handle = h; init_file(); check = gtk_timeout_add(5000, (GtkFunction)check_file, NULL); } void gaim_plugin_remove() { gtk_timeout_remove(check); } char *name() { return "Gaim File Control"; } char *description() { return "Allows you to control gaim by entering commands in a file."; } /* check to see if the size of the file is > 0. if so, run commands */ void init_file() { /* most of this was taken from Bash v2.04 by the FSF */ struct stat finfo; char file[256]; sprintf(file, "%s/.gaim/control", getenv("HOME")); if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) run_commands(); } /* check to see if we need to run commands from the file */ void check_file() { /* most of this was taken from Bash v2.04 by the FSF */ struct stat finfo; char file[256]; sprintf(file, "%s/.gaim/control", getenv("HOME")); if ((stat (file, &finfo) == 0) && (finfo.st_size > 0)) if (mtime != finfo.st_mtime) { sprintf(debug_buff, "control changed, checking\n"); debug_print(debug_buff); run_commands(); } } char *getarg(char *line, int which, int remain) { char *arr; char *val; int count = -1; int i; int state = 0; for (i = 0; i < strlen(line) && count < which; i++) { switch (state) { case 0: /* in whitespace, expecting word */ if (isalnum(line[i])) { count++; state = 1; } break; case 1: /* inside word, waiting for whitespace */ if (isspace(line[i])) { state = 0; } break; } } arr = strdup(&line[i - 1]); if (remain) return arr; for (i = 0; i < strlen(arr) && isalnum(arr[i]); i++); arr[i] = 0; val = strdup(arr); arr[i] = ' '; free(arr); return val; }