aboutsummaryrefslogtreecommitdiffstats
path: root/ircify.c
blob: a8e5ca4061155dee674931d65204b374be5dd4fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "line.h"

extern struct global libline;

int pin[2];
int pout[2];

void line_handler(struct shit *me,char *line) {
  char tmp[1024];
  if(!strncmp(line,"PING ",5)) {
    line[1]='O';
    printf("%s\r\n",line);
  }
  if(*line == ':') {
    if(strchr(line,' ')) {
      if(!strncmp(strchr(line,' ')," PRIVMSG ",9)) {
        if(strchr(line+1,':')) {
          snprintf(tmp,sizeof(tmp),"%s\n",strchr(line+1,':')+1);
          write(pin[1],tmp,strlen(tmp));
        }
      }
    }
  }
  fprintf(stderr,"READ SHIT: %s\n",line);
}

char channel[256];

void line_handler2(struct shit *me,char *line) {
  printf("PRIVMSG %s :%s\r\n",channel,line);
  fflush(stdout);
}

int main(int argc,char *argv[]) {
  strcpy(channel,argv[1]);
  argv+=2;
  int i=0;
  for(i=0;i<100;i++) {
    libline.fds[i].fd=-1;
  }
  libline.shitlen=0;
  pipe(pin);
  pipe(pout);
  if(!fork()) {
    close(0);
    close(1);
    dup2(pin[0],0);
    dup2(pout[1],1);
    execv(argv[0],argv);
  }
  add_fd(0,line_handler);
  add_fd(pout[0],line_handler2);
  select_on_everything();
}