aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-06-04 23:20:01 -0400
committerZoffix Znet <cpan@zoffix.com>2016-06-04 23:20:01 -0400
commitc56f8b4359f2730bb9e8bccd40bf2c9fa840f433 (patch)
tree24d2021ab2794647aad2f44d802be160edfc485d /lib/IRC/Client
parent5a2196b2c8f2ac2eacb3ddaf40b3e75b9c38bb62 (diff)
First working rewrite
Diffstat (limited to 'lib/IRC/Client')
-rw-r--r--lib/IRC/Client/Grammar.pm64
-rw-r--r--lib/IRC/Client/Grammar/Actions.pm618
-rw-r--r--lib/IRC/Client/Message.pm625
-rw-r--r--lib/IRC/Client/Plugin.pm64
4 files changed, 38 insertions, 13 deletions
diff --git a/lib/IRC/Client/Grammar.pm6 b/lib/IRC/Client/Grammar.pm6
index a258e56..feec9fd 100644
--- a/lib/IRC/Client/Grammar.pm6
+++ b/lib/IRC/Client/Grammar.pm6
@@ -1,6 +1,6 @@
unit grammar IRC::Client::Grammar;
-token TOP { <message>+ <leftovers> }
-token leftovers { \N* }
+token TOP { <message>+ <left-overs> }
+token left-overs { \N* }
token SPACE { ' '+ }
token message { [':' <prefix> <SPACE> ]? <command> <params> \n }
token prefix {
diff --git a/lib/IRC/Client/Grammar/Actions.pm6 b/lib/IRC/Client/Grammar/Actions.pm6
index 6ebe33d..cf702f8 100644
--- a/lib/IRC/Client/Grammar/Actions.pm6
+++ b/lib/IRC/Client/Grammar/Actions.pm6
@@ -40,8 +40,8 @@ method message ($match) {
irc => $!irc,
nick => %args<who><nick>//'',
server => $!server,
+ usermask => ~($match<prefix>//''),
username => %args<who><user>//'';
- .<usermask> = .<nick> ~ '!' ~ .<username> ~ '@' ~ .<host> given %msg-args;
my $msg;
given %msg-args<command> {
@@ -53,11 +53,17 @@ method message ($match) {
:channel( %args<params>[0] ),
|%msg-args;
}
- when 'NOTICE' { $msg = msg-notice %args, %msg-args }
- when 'MODE' { $msg = msg-mode %args, %msg-args }
- when 'PING' { $msg = IRC::Client::Message::Ping.new: |%msg-args; }
- when 'PRIVMSG' { $msg = msg-privmsg %args, %msg-args }
- default { $msg = IRC::Client::Message::Unknown.new: |%msg-args }
+ when 'PART' {
+ $msg = IRC::Client::Message::Part.new:
+ :channel( %args<params>[0] ),
+ |%msg-args;
+ }
+ when 'NOTICE' { $msg = msg-notice %args, %msg-args }
+ when 'MODE' { $msg = msg-mode %args, %msg-args }
+ when 'PING' { $msg = IRC::Client::Message::Ping.new: |%msg-args }
+ when 'PRIVMSG' { $msg = msg-privmsg %args, %msg-args }
+ when 'QUIT' { $msg = IRC::Client::Message::Quit.new: |%msg-args }
+ default { $msg = IRC::Client::Message::Unknown.new: |%msg-args }
}
$match.make: $msg;
diff --git a/lib/IRC/Client/Message.pm6 b/lib/IRC/Client/Message.pm6
index 4abb718..1b38d23 100644
--- a/lib/IRC/Client/Message.pm6
+++ b/lib/IRC/Client/Message.pm6
@@ -10,7 +10,7 @@ role IRC::Client::Message {
has Str:D $.server is required;
has @.args is required;
- method Str { "$.command @.args[]" }
+ method Str { ":$!usermask $!command @!args[]" }
}
constant M = IRC::Client::Message;
@@ -23,11 +23,26 @@ role Mode does M { has @.modes; }
role Mode::Channel does Mode { has $.channel; }
role Mode::Me does Mode { }
role Numeric does M { }
-role Privmsg does M { has $.text; }
-role Privmsg::Channel does Privmsg { has $.channel; }
-role Privmsg::Me does Privmsg { }
-role Unknown does M { method Str { "❚⚠❚ $.command @.args[]" } }
+role Part does M { has $.channel; }
+role Quit does M { }
+role Unknown does M {
+ method Str { "❚⚠❚ :$.usermask $.command @.args[]" }
+}
role Ping does M {
method reply { $.irc.send-cmd: 'PONG', @.args; }
}
+
+role Privmsg does M { has $.text; }
+role Privmsg::Channel does Privmsg {
+ has $.channel;
+ method reply ($text, :$where) {
+ $.irc.send-cmd: 'PRIVMSG', $where // $.channel, $text;
+ }
+}
+role Privmsg::Me does Privmsg {
+ method reply ($text, :$where) {
+ $where //= $.nick;
+ $.irc.send-cmd: 'PRIVMSG', $where, $text;
+ }
+}
diff --git a/lib/IRC/Client/Plugin.pm6 b/lib/IRC/Client/Plugin.pm6
new file mode 100644
index 0000000..2493c3f
--- /dev/null
+++ b/lib/IRC/Client/Plugin.pm6
@@ -0,0 +1,4 @@
+unit role IRC::Client::Plugin;
+
+has $.IRC_HANDLED = my class IRC_FLAG_HANDLED {};
+has $.IRC_NOT_HANDLED = my class IRC_FLAG_NOT_HANDLED {};