source: trunk/Modules/Chat/irc_bot.php@ 548

Last change on this file since 548 was 548, checked in by chronos, 12 years ago
  • Odstraněno: Ukončovací PHP značka.
File size: 6.1 KB
Line 
1<?php
2
3include_once('../Common/Global.php');
4
5class IRCBot
6{
7 var $OwnerName = 'Chronosův';
8 var $Server = "game.zdechov.net";
9 var $Port = 6667;
10 var $Channel = "#zdechov";
11 var $Nick = "History";
12 var $JokeFileName = "jokes.txt";
13 var $File;
14
15 function __construct()
16 {
17 $this->Jokes = file($this->JokeFileName);
18 $this->File = fsockopen($this->Server, $this->Port, $ErrNumber, $ErrString, 5);
19 $this->Connect($this->File, $this->Nick, $this->Channel, 0);
20 }
21
22 function Connect()
23 {
24 $this->Command('USER USER '.$this->Nick." # # :".$this->Nick);
25 $this->Command('NICK '.$this->Nick);
26 //sleep($JoinWaitTime);
27 $this->Command('JOIN '.$this->Channel);
28 }
29
30 function Say($Message, $Recipient = '')
31 {
32 if($Recipient == '') $Recipient = $this->Channel;
33 $this->Command(': PRIVMSG '.$Recipient.' :'.$Message);
34 }
35
36 function Command($Text)
37 {
38 fwrite($this->File, $Text."\n");
39 }
40
41 function Run()
42 {
43 global $Database;
44
45 while(!fwrite($this->File, ''))
46 {
47 $this->Command('JOIN '.$this->Channel);
48
49 $Line = fgets($this->File);
50 echo($Line);
51
52 $LineParts = explode(' ', $Line);
53 if(count($LineParts) > 0)
54 {
55 if($LineParts[0] == 'PING')
56 {
57 $this->Command('PONG '.trim($LineParts[1])."\n");
58 echo('-PONG '.trim($LineParts[1])."\n");
59 }
60
61 if(count($LineParts) > 1)
62 {
63 if((trim($LineParts[1]) == 'INVITE') && (substr(trim($LineParts[3]), 0, 2) == ':#'))
64 {
65 $CurrentChannel = substr(trim($LineParts[3]), 1);
66 fwrite($this->File, 'JOIN '.$this->Channel."\n");
67 $this->Say('Hello');
68 echo('-JOINED '.$this->Channel."\n");
69 }
70 }
71 }
72
73 $Commands = array(substr($Line, 0, strpos($Line, ':') + 1));
74 $Line = substr($Line, strlen($Commands[0]));
75 $Commands[1] = substr($Line, 0, strpos($Line, ':') + 1);
76 $Commands[2] = substr($Line, strlen($Commands[1]));
77 //print_r($Commands);
78
79 // Log messages to database
80 if(strpos($Line, 'PRIVMSG') !== false)
81 {
82 $Text = addslashes($Commands[2]);
83 $LineParts2 = explode(' ', $Commands[1]);
84 $LineParts3 = explode('@', $LineParts2[0]);
85 $Host = addslashes($LineParts3[1]);
86 $LineParts4 = explode('!', $LineParts3[0]);
87 $Nick = addslashes($LineParts4[0]);
88 $Database->insert('ChatHistory', array('Nick' => $Nick, 'Text' => $Text, 'Host' => $Host, 'Time' => 'NOW()', 'RoomName' => 'Všichni'));
89 }
90
91
92 explode(':', $Line);
93 foreach($Commands as $Index => $Item)
94 $Commands[$Index] = trim($Item);
95
96 if(count($Commands) >= 2)
97 {
98 $Command = $Commands[2];
99
100 // Jméno - Pošle vizitku
101 if($Command == $this->Nick)
102 {
103 $this->Say('Ahoj lidi, ja jsem '.$this->OwnerName.' bot. Random#: '.rand(0, 10));
104 echo('-VISITCARD'."\n");
105 }
106
107 // hhelp - vypise tuto napovedu
108 if($Command == 'hhelp')
109 {
110 $this->Say('Ja jsem Harvester.');
111 /*
112 irc_say( $sfp, "Bot - Posle vizitku", $nick, $channel );
113 irc_say( $sfp, "hhelp - vypise tuto napovedu", $nick, $channel );
114 irc_say( $sfp, "hsay:Message - Posle zpravu", $nick, $channel );
115 irc_say( $sfp, "hpsay:to:Message - Posle soukromou zpravu kanalu nebo osobe", $nick, $channel );
116 irc_say( $sfp, "hdo:Command - Posle serveru prikaz", $nick, $channel );
117 irc_say( $sfp, "hmove:Channel - Pripoji do kanalu / Zmeni aktivni kanal", $nick, $channel );
118 irc_say( $sfp, "/invite Harvester #channel - Pozve a pripoji bota do kanalu", $nick, $channel );
119 irc_say( $sfp, "hpart:Channel - Odpoji se z kanalu", $nick, $channel );
120 irc_say( $sfp, "hjoke - Posle \"nahodny\" vtip", $nick, $channel );
121 */
122 echo("-HELPED"."\n");
123 }
124
125 // hsay:Message - Posle zpravu
126 if($Command == 'hsay')
127 {
128 $this->Say($Commands[3]);
129 echo("-SAID: ".$Commands[3]."\n");
130 }
131
132 // hpsay:to:Message - Posle soukromou zpravu kanalu nebo osobe
133 if($Command == 'hpsay')
134 {
135 $this->Say($Commands[4], $Commands[3]);
136 echo("-SAID: ".$Commands[4]." -- To: ".$Commands[3]."\n");
137 }
138
139 // hcol:to:Message - Posle kolizni zpravu kanalu nebo osobe
140 if($Command == 'hcol')
141 {
142 $this->Say($Commands[4], $Commands[3]);
143 echo("-COLIDED: ".$Commands[4]." To: ".$Commands[3]."\n");
144 }
145
146 // hdo:Command - Posle serveru prikaz
147 if($Command == 'hdo')
148 {
149 $hdo = explode('hdo:', $Line);
150 $this->Command(trim($hdo[1]));
151 echo("-DONE: ".trim($hdo[1])."\n");
152 }
153
154 // hpart:Channel - Odpoji se z kanalu
155 if($Command == 'hpart')
156 {
157 $hdo = explode('hpart:', $Line);
158 if(trim($hdo[1]) != trim($this->Channel))
159 {
160 $this->Command('PART :'.trim($hdo[1])."\n");
161 echo("-PARTED: ".trim($hdo[1])."\n");
162 }
163 }
164
165 // hmove:Channel - Zmeni aktivni kanal
166 if($Command == 'hmove')
167 {
168 $hdo = explode("hmove:", $Line);
169 if(trim($hdo[1]) != trim($$this->Cannel))
170 {
171 $this->Channel = trim($hdo[1]);
172 $this->Command('JOIN '.$this->Channel."\n");
173 $this->Say('Hi, im here...');
174 echo("-ACTIVATED: ".trim($hdo[1])."\n");
175 }
176 }
177
178 // htime - udaje o casu
179 if($Command == 'htime')
180 {
181 $Date = implode("-", getdate(time()));
182 $this->Say(trim($Date));
183 echo("-TIMED"."\n");
184 }
185
186 // hjoke - Posle nahodny vtip
187 if($Command == 'hjoke')
188 {
189 $Joke = ($this->Jokes[rand(0, (sizeof($this->Jokes) - 1))]);
190 $this->Say(trim($Joke));
191 echo("-JOKED"."\n");
192 }
193 }
194 }
195 echo("-Connection lost.\n");
196 }
197
198}
199
200$IRCBot = new IRCBot();
201$IRCBot->Run();
Note: See TracBrowser for help on using the repository browser.