1 | use strict; |
---|
2 | use warnings; |
---|
3 | |
---|
4 | package BarnOwl::Message; |
---|
5 | |
---|
6 | use File::Spec; |
---|
7 | |
---|
8 | use BarnOwl::Message::Admin; |
---|
9 | use BarnOwl::Message::Generic; |
---|
10 | use BarnOwl::Message::Loopback; |
---|
11 | use BarnOwl::Message::Zephyr; |
---|
12 | |
---|
13 | sub new { |
---|
14 | my $class = shift; |
---|
15 | my %args = (@_); |
---|
16 | if($class eq __PACKAGE__ && $args{type}) { |
---|
17 | $class = "BarnOwl::Message::" . ucfirst $args{type}; |
---|
18 | } |
---|
19 | return bless {%args}, $class; |
---|
20 | } |
---|
21 | |
---|
22 | sub type { return shift->{"type"}; } |
---|
23 | sub direction { return shift->{"direction"}; } |
---|
24 | sub time { return shift->{"time"}; } |
---|
25 | sub unix_time { return shift->{"unix_time"}; } |
---|
26 | sub id { return shift->{"id"}; } |
---|
27 | sub body { return shift->{"body"}; } |
---|
28 | sub sender { return shift->{"sender"}; } |
---|
29 | sub recipient { return shift->{"recipient"}; } |
---|
30 | sub login { return shift->{"login"}; } |
---|
31 | sub is_private { return shift->{"private"}; } |
---|
32 | |
---|
33 | sub is_login { return shift->login eq "login"; } |
---|
34 | sub is_logout { return shift->login eq "logout"; } |
---|
35 | sub is_loginout { my $m=shift; return ($m->is_login or $m->is_logout); } |
---|
36 | sub is_incoming { return (shift->{"direction"} eq "in"); } |
---|
37 | sub is_outgoing { return (shift->{"direction"} eq "out"); } |
---|
38 | |
---|
39 | sub is_deleted { return shift->{"deleted"}; } |
---|
40 | |
---|
41 | sub is_admin { return (shift->{"type"} eq "admin"); } |
---|
42 | sub is_generic { return (shift->{"type"} eq "generic"); } |
---|
43 | sub is_zephyr { return (shift->{"type"} eq "zephyr"); } |
---|
44 | sub is_aim { return ''; } |
---|
45 | sub is_jabber { return (shift->{"type"} eq "jabber"); } |
---|
46 | sub is_icq { return (shift->{"type"} eq "icq"); } |
---|
47 | sub is_yahoo { return (shift->{"type"} eq "yahoo"); } |
---|
48 | sub is_msn { return (shift->{"type"} eq "msn"); } |
---|
49 | sub is_loopback { return (shift->{"type"} eq "loopback"); } |
---|
50 | |
---|
51 | # These are overridden by appropriate message types |
---|
52 | sub is_ping { return 0; } |
---|
53 | sub is_mail { return 0; } |
---|
54 | sub is_personal { return BarnOwl::message_matches_filter(shift, "personal"); } |
---|
55 | sub class { return undef; } |
---|
56 | sub instance { return undef; } |
---|
57 | sub realm { return undef; } |
---|
58 | sub opcode { return undef; } |
---|
59 | sub header { return undef; } |
---|
60 | sub host { return undef; } |
---|
61 | sub hostname { return undef; } |
---|
62 | sub auth { return undef; } |
---|
63 | sub fields { return undef; } |
---|
64 | sub zsig { return undef; } |
---|
65 | sub zwriteline { return undef; } |
---|
66 | sub login_host { return undef; } |
---|
67 | sub login_tty { return undef; } |
---|
68 | |
---|
69 | # This is for back-compat with old messages that set these properties |
---|
70 | # New protocol implementations are encourages to user override these |
---|
71 | # methods. |
---|
72 | sub replycmd { return shift->{replycmd}}; |
---|
73 | sub replysendercmd { return shift->{replysendercmd}}; |
---|
74 | |
---|
75 | sub pretty_sender { return shift->sender; } |
---|
76 | sub pretty_recipient { return shift->recipient; } |
---|
77 | |
---|
78 | # Override if you want a context (instance, network, etc.) on personals |
---|
79 | sub personal_context { return ""; } |
---|
80 | # extra short version, for use where space is especially tight |
---|
81 | # (eg, the oneline style) |
---|
82 | sub short_personal_context { return ""; } |
---|
83 | |
---|
84 | sub delete_and_expunge { |
---|
85 | my ($m) = @_; |
---|
86 | &BarnOwl::command("delete-and-expunge --quiet --id " . $m->id); |
---|
87 | } |
---|
88 | |
---|
89 | sub delete { |
---|
90 | my ($m) = @_; |
---|
91 | &BarnOwl::command("delete --id ".$m->id); |
---|
92 | } |
---|
93 | |
---|
94 | sub undelete { |
---|
95 | my ($m) = @_; |
---|
96 | &BarnOwl::command("undelete --id ".$m->id); |
---|
97 | } |
---|
98 | |
---|
99 | # Serializes the message into something similar to the zwgc->vt format |
---|
100 | sub serialize { |
---|
101 | my ($this) = @_; |
---|
102 | my $s; |
---|
103 | for my $f (keys %$this) { |
---|
104 | my $val = $this->{$f}; |
---|
105 | if (ref($val) eq "ARRAY") { |
---|
106 | for my $i (0..@$val-1) { |
---|
107 | my $aval; |
---|
108 | $aval = $val->[$i]; |
---|
109 | $aval =~ s/\n/\n$f.$i: /g; |
---|
110 | $s .= "$f.$i: $aval\n"; |
---|
111 | } |
---|
112 | } else { |
---|
113 | $val =~ s/\n/\n$f: /g; |
---|
114 | $s .= "$f: $val\n"; |
---|
115 | } |
---|
116 | } |
---|
117 | return $s; |
---|
118 | } |
---|
119 | |
---|
120 | =head2 log MESSAGE |
---|
121 | |
---|
122 | Returns the text that should be written to a file to log C<MESSAGE>. |
---|
123 | |
---|
124 | =cut |
---|
125 | |
---|
126 | sub log { |
---|
127 | my ($m) = @_; |
---|
128 | return $m->log_header . "\n\n" . $m->log_body . "\n\n"; |
---|
129 | } |
---|
130 | |
---|
131 | =head2 log_header MESSAGE |
---|
132 | |
---|
133 | Returns the header of the message, for logging purposes. |
---|
134 | If you override L<BarnOwl::Message::log>, this method is not called. |
---|
135 | |
---|
136 | =cut |
---|
137 | |
---|
138 | sub log_header { |
---|
139 | my ($m) = @_; |
---|
140 | my $sender = $m->sender; |
---|
141 | my $recipient = $m->recipient; |
---|
142 | my $timestr = $m->time; |
---|
143 | return "From: <$sender> To: <$recipient>\n" |
---|
144 | . "Time: $timestr"; |
---|
145 | } |
---|
146 | |
---|
147 | =head2 log_body MESSAGE |
---|
148 | |
---|
149 | Returns the body of the message, for logging purposes. |
---|
150 | If you override L<BarnOwl::Message::log>, this method is not called. |
---|
151 | |
---|
152 | =cut |
---|
153 | |
---|
154 | sub log_body { |
---|
155 | my ($m) = @_; |
---|
156 | if ($m->is_loginout) { |
---|
157 | return uc($m->login) |
---|
158 | . $m->login_type |
---|
159 | . ($m->login_extra ? ' at ' . $m->login_extra : ''); |
---|
160 | } else { |
---|
161 | return $m->body; |
---|
162 | } |
---|
163 | } |
---|
164 | |
---|
165 | =head2 log_filenames MESSAGE |
---|
166 | |
---|
167 | Returns a list of filenames to which this message should be logged. |
---|
168 | The filenames should be relative to the path returned by C<log_path>. |
---|
169 | See L<BarnOwl::Logging::get_filenames> for the specification of valid |
---|
170 | filenames, and for what happens if this method returns an invalid |
---|
171 | filename. |
---|
172 | |
---|
173 | =cut |
---|
174 | |
---|
175 | sub log_filenames { |
---|
176 | my ($m) = @_; |
---|
177 | my $filename; |
---|
178 | if ($m->is_incoming) { |
---|
179 | $filename = $m->pretty_sender; |
---|
180 | } elsif ($m->is_outgoing) { |
---|
181 | $filename = $m->pretty_recipient; |
---|
182 | } |
---|
183 | $filename = "unknown" if !defined($filename) || $filename eq ''; |
---|
184 | if (BarnOwl::getvar('log-to-subdirectories') eq 'on') { |
---|
185 | return ($filename); |
---|
186 | } else { |
---|
187 | return ($m->log_subfolder . ':' . $filename); |
---|
188 | } |
---|
189 | } |
---|
190 | |
---|
191 | =head2 log_to_all_file MESSAGE |
---|
192 | |
---|
193 | There is an C<all> file. This method determines if C<MESSAGE> |
---|
194 | should get logged to it, in addition to any files returned by |
---|
195 | C<log_filenames>. |
---|
196 | |
---|
197 | It defaults to returning true if and only if C<MESSAGE> is outgoing. |
---|
198 | |
---|
199 | =cut |
---|
200 | |
---|
201 | sub log_to_all_file { |
---|
202 | my ($m) = @_; |
---|
203 | return $m->is_outgoing; |
---|
204 | } |
---|
205 | |
---|
206 | =head2 log_path MESSAGE |
---|
207 | |
---|
208 | Returns the folder in which all messages of this class get logged. |
---|
209 | |
---|
210 | Defaults to C<log_base_path/log_subfolder> if C<log-to-subdirectories> |
---|
211 | is enabled, or to the C<logpath> BarnOwl variable if it is not. |
---|
212 | |
---|
213 | Most protocols should override C<log_subfolder> rather than |
---|
214 | C<log_path>, in order to properly take into account the value of |
---|
215 | C<log-to-subdirectories>. |
---|
216 | |
---|
217 | =cut |
---|
218 | |
---|
219 | sub log_path { |
---|
220 | my ($m) = @_; |
---|
221 | if (BarnOwl::getvar('log-to-subdirectories') eq 'on') { |
---|
222 | return File::Spec->catfile($m->log_base_path, $m->log_subfolder); |
---|
223 | } else { |
---|
224 | return BarnOwl::getvar('logpath'); |
---|
225 | } |
---|
226 | } |
---|
227 | |
---|
228 | =head2 log_base_path MESSAGE |
---|
229 | |
---|
230 | Returns the base path for logging. See C<log_path> for more information. |
---|
231 | |
---|
232 | Defaults to the BarnOwl variable C<logbasepath>. |
---|
233 | |
---|
234 | =cut |
---|
235 | |
---|
236 | sub log_base_path { |
---|
237 | return BarnOwl::getvar('logbasepath'); |
---|
238 | } |
---|
239 | |
---|
240 | =head2 log_subfolder MESSAGE |
---|
241 | |
---|
242 | Returns the subfolder of C<log_base_path> to log messages in. |
---|
243 | |
---|
244 | Defaults to C<lc($m->type)>. |
---|
245 | |
---|
246 | =cut |
---|
247 | |
---|
248 | sub log_subfolder { |
---|
249 | return lc(shift->type); |
---|
250 | } |
---|
251 | |
---|
252 | =head2 log_outgoing_error MESSAGE |
---|
253 | |
---|
254 | Returns the string that should be logged if there is an error sending |
---|
255 | an outgoing message. |
---|
256 | |
---|
257 | =cut |
---|
258 | |
---|
259 | sub log_outgoing_error { |
---|
260 | my ($m) = @_; |
---|
261 | my $recipient = $m->pretty_recipient; |
---|
262 | my $body = $m->body; |
---|
263 | chomp $body; |
---|
264 | return "ERROR (BarnOwl): $recipient\n$body\n\n"; |
---|
265 | } |
---|
266 | |
---|
267 | =head2 should_log MESSAGE |
---|
268 | |
---|
269 | Returns true if we should log C<MESSAGE>. This does not override |
---|
270 | user settings; if the BarnOwl variable C<loggingdirection> is in, |
---|
271 | and C<MESSAGE> is outgoing and does not match the C<logfilter>, it |
---|
272 | will not get logged regardless of what this method returns. |
---|
273 | |
---|
274 | Note that this method I<does> override the BarnOwl C<logging> |
---|
275 | variable; if a derived class overrides this method and does not |
---|
276 | provide an alternative BarnOwl variable (such as C<classlogging>), |
---|
277 | the overriding method should check the BarnOwl C<logging> variable. |
---|
278 | |
---|
279 | Defaults to returning the value of the BarnOwl variable C<logging>. |
---|
280 | |
---|
281 | =cut |
---|
282 | |
---|
283 | sub should_log { |
---|
284 | return BarnOwl::getvar('logging') eq 'on'; |
---|
285 | } |
---|
286 | |
---|
287 | # Populate the annoying legacy global variables |
---|
288 | sub legacy_populate_global { |
---|
289 | my ($m) = @_; |
---|
290 | $BarnOwl::direction = $m->direction ; |
---|
291 | $BarnOwl::type = $m->type ; |
---|
292 | $BarnOwl::id = $m->id ; |
---|
293 | $BarnOwl::class = $m->class ; |
---|
294 | $BarnOwl::instance = $m->instance ; |
---|
295 | $BarnOwl::recipient = $m->recipient ; |
---|
296 | $BarnOwl::sender = $m->sender ; |
---|
297 | $BarnOwl::realm = $m->realm ; |
---|
298 | $BarnOwl::opcode = $m->opcode ; |
---|
299 | $BarnOwl::zsig = $m->zsig ; |
---|
300 | $BarnOwl::msg = $m->body ; |
---|
301 | $BarnOwl::time = $m->time ; |
---|
302 | $BarnOwl::host = $m->host ; |
---|
303 | $BarnOwl::login = $m->login ; |
---|
304 | $BarnOwl::auth = $m->auth ; |
---|
305 | if ($m->fields) { |
---|
306 | @BarnOwl::fields = @{$m->fields}; |
---|
307 | @main::fields = @{$m->fields}; |
---|
308 | } else { |
---|
309 | @BarnOwl::fields = undef; |
---|
310 | @main::fields = undef; |
---|
311 | } |
---|
312 | } |
---|
313 | |
---|
314 | sub smartfilter { |
---|
315 | die("smartfilter not supported for this message\n"); |
---|
316 | } |
---|
317 | |
---|
318 | # Display fields -- overridden by subclasses when needed |
---|
319 | sub login_type {""} |
---|
320 | sub login_extra {""} |
---|
321 | sub long_sender {""} |
---|
322 | |
---|
323 | # The context in which a non-personal message was sent, e.g. a chat or |
---|
324 | # class |
---|
325 | sub context {""} |
---|
326 | |
---|
327 | # Some indicator of context *within* $self->context. e.g. the zephyr |
---|
328 | # instance |
---|
329 | sub subcontext {""} |
---|
330 | |
---|
331 | |
---|
332 | 1; |
---|