aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Message.rakumod
blob: 1e1ffb742ee8f7ce5c2da5750f46226fcc82b536 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#! /usr/bin/env false

use v6.d;

use IRC::Grammar;

#| A class to represent a message over IRC.
unit class IRC::Client::Message;

has Str $.servername;
has Str $.nickname;
has Str $.user;
has Str $.host;
has Str $.command;
has Str @.params;
has Bool $.ctcp = False;
has $.irc;

multi method new (
	#| A string representing a line sent or received from an IRC server.
	Str:D $line,

	#| A reference the the IRC::Client handling the message.
	$irc,
) {
	my $match = IRC::Grammar.parse($line);

	# If the line doesn't match the IRC grammar, it's malformed and not up
	# to IRC::Client to fix it.
	die "Malformed message '$line'" if !?$match;

	my $ctcp = False;
	my @params = $match<params>.map(*.Str).Array;

	my %prefix = $match<prefix>
		.hash
		.kv
		.map(sub ($key, $value) { $key => $value.Str })
		;

	if ($match<command> eq 'PRIVMSG'|'NOTICE') {
		with ($match<params>.tail.Str) {
			if ($_.comb[0, *-1].grep(* eq "\x[1]")) {
				$ctcp = True;
				@params[*-1] = $_.Str.substr(1, *-1);
			} else {
				@params[*-1] = $_.Str;
			}
		}
	}

	self.bless(
		command => $match<command>.Str,
		|%prefix,
		:@params,
		:$irc,
	);
}

multi method new (
	%params,
) {
	self.bless(|%params, params => %params<params>.list);
}

method gist
{
	@!params.tail
}

method prefix
{
	return $!servername if $!servername;

	my $prefix = $!nickname;

	if ($!host) {
		if ($!user) {
			$prefix = "$prefix!$!user";
		}

		$prefix = "$prefix@$!host";
	}

	$prefix;
}

method raku
{
	my $s = "$!command {@!params.join(' ')}";

	with (self.prefix) { $s = ":$_ $s" }

	given (@!params.elems) {
		when 1 {
			$s = "$s :{@!params[0]}"
		}
		default {
			my @middle = @!params.head(*-1);
			my $trailing = @!params.tail;

			$s = "$s {@middle.join(' ')} :$trailing";
		}
	}


	$s;
}

method words
{
	self.Str.words
}

method Hash
{
	%(
		:$!servername,
		:$!nickname,
		:$!user,
		:$!host,
		:$!command,
		:@!params,
		:$!ctcp,
		:$!irc,
	)
}

method Str
{
	self.gist
}

#
# Mutators
#

method set-param (
	$index where { $_ ~~ Int:D|Code:D },
	Str:D $value,
) {
	my %params = self.Hash;

	%params<params>[$index] = $value;

	self.new(|%params, params => %params<params>.list);
}

#
# Convenience
#

method reply (
	Str:D $message,
) {
	my $target = @!params[0] eq $!irc.nick ?? $!nickname !! @!params[0];

	given ($!command) {
		when 'PRIVMSG' { $!irc.privmsg($target, $message, :$!ctcp) }
		when 'NOTICE' { $!irc.notice($target, $message, :$!ctcp) }
	}
}

=begin pod

=NAME    IRC::Client::Message
=AUTHOR  Patrick Spek <~tyil/raku-devel@lists.sr.ht>
=VERSION 0.0.0

=head1 Synopsis

=head1 Description

=head1 Examples

=head1 See also

=end pod

# vim: ft=perl6 noet