source: perl/lib/BarnOwl/Message.pm @ eea7bed4

Last change on this file since eea7bed4 was eea7bed4, checked in by Jason Gross <jasongross9@gmail.com>, 7 years ago
Moved log file name generation to perl I don't think that the class/personal distinction is the best for general protocols, but I don't know what should replace it. I've made class-logging default to only zephyr (a slight change from previous behavior, where jabber MUC's would be logged to $classlogpath, as well as all non-private non-login messages from other protocols), but made logging path generation overridable. TODO: Decide whether or not to filter out more 'bad' characters. Perhaps we should remove '!' because it indicates history in some shells and makes things obnoxious, or '~' becase it indicates homedirs in many shells. * '/' is for separating directories, and we don't want to accidentally make subdirectories We first NFKC for zephyrs, and then apply lc. The zephyr servers apply case-folded NFKC (so says http://zephyr.1ts.org/browser/zephyr/server/zstring.c). We should probably use Unicode::CaseFold instead of lc. I'm also not sure what the order case-adjustment and normalization should be. We first NFKC, then apply lc, to jabbers, as per http://xmpp.org/internet-drafts/attic/draft-ietf-xmpp-nodeprep-03.html (though I can't actually find anything that specifies the case-folding algorithm, nor the ordering). We now use lc instead of g_utf8_strdown to normalize AIM screennames.
  • Property mode set to 100644
File size: 7.0 KB
Line 
1use strict;
2use warnings;
3
4package BarnOwl::Message;
5
6use BarnOwl::Message::Admin;
7use BarnOwl::Message::AIM;
8use BarnOwl::Message::Generic;
9use BarnOwl::Message::Loopback;
10use BarnOwl::Message::Zephyr;
11
12sub new {
13    my $class = shift;
14    my %args = (@_);
15    if($class eq __PACKAGE__ && $args{type}) {
16        $class = "BarnOwl::Message::" . ucfirst $args{type};
17    }
18    return bless {%args}, $class;
19}
20
21sub type        { return shift->{"type"}; }
22sub direction   { return shift->{"direction"}; }
23sub time        { return shift->{"time"}; }
24sub unix_time   { return shift->{"unix_time"}; }
25sub id          { return shift->{"id"}; }
26sub body        { return shift->{"body"}; }
27sub sender      { return shift->{"sender"}; }
28sub recipient   { return shift->{"recipient"}; }
29sub login       { return shift->{"login"}; }
30sub is_private  { return shift->{"private"}; }
31
32sub is_login    { return shift->login eq "login"; }
33sub is_logout   { return shift->login eq "logout"; }
34sub is_loginout { my $m=shift; return ($m->is_login or $m->is_logout); }
35sub is_incoming { return (shift->{"direction"} eq "in"); }
36sub is_outgoing { return (shift->{"direction"} eq "out"); }
37
38sub is_deleted  { return shift->{"deleted"}; }
39
40sub is_admin    { return (shift->{"type"} eq "admin"); }
41sub is_generic  { return (shift->{"type"} eq "generic"); }
42sub is_zephyr   { return (shift->{"type"} eq "zephyr"); }
43sub is_aim      { return (shift->{"type"} eq "AIM"); }
44sub is_jabber   { return (shift->{"type"} eq "jabber"); }
45sub is_icq      { return (shift->{"type"} eq "icq"); }
46sub is_yahoo    { return (shift->{"type"} eq "yahoo"); }
47sub is_msn      { return (shift->{"type"} eq "msn"); }
48sub is_loopback { return (shift->{"type"} eq "loopback"); }
49
50# These are overridden by appropriate message types
51sub is_ping     { return 0; }
52sub is_mail     { return 0; }
53sub is_personal { return BarnOwl::message_matches_filter(shift, "personal"); }
54sub class       { return undef; }
55sub instance    { return undef; }
56sub realm       { return undef; }
57sub opcode      { return undef; }
58sub header      { return undef; }
59sub host        { return undef; }
60sub hostname    { return undef; }
61sub auth        { return undef; }
62sub fields      { return undef; }
63sub zsig        { return undef; }
64sub zwriteline  { return undef; }
65sub login_host  { return undef; }
66sub login_tty   { return undef; }
67
68# This is for back-compat with old messages that set these properties
69# New protocol implementations are encourages to user override these
70# methods.
71sub replycmd         { return shift->{replycmd}};
72sub replysendercmd   { return shift->{replysendercmd}};
73
74sub pretty_sender    { return shift->sender; }
75sub pretty_recipient { return shift->recipient; }
76
77# Override if you want a context (instance, network, etc.) on personals
78sub personal_context { return ""; }
79# extra short version, for use where space is especially tight
80# (eg, the oneline style)
81sub short_personal_context { return ""; }
82
83sub delete_and_expunge {
84    my ($m) = @_;
85    &BarnOwl::command("delete-and-expunge --quiet --id " . $m->id);
86}
87
88sub delete {
89    my ($m) = @_;
90    &BarnOwl::command("delete --id ".$m->id);
91}
92
93sub undelete {
94    my ($m) = @_;
95    &BarnOwl::command("undelete --id ".$m->id);
96}
97
98# Serializes the message into something similar to the zwgc->vt format
99sub serialize {
100    my ($this) = @_;
101    my $s;
102    for my $f (keys %$this) {
103        my $val = $this->{$f};
104        if (ref($val) eq "ARRAY") {
105            for my $i (0..@$val-1) {
106                my $aval;
107                $aval = $val->[$i];
108                $aval =~ s/\n/\n$f.$i: /g;
109                $s .= "$f.$i: $aval\n";
110            }
111        } else {
112            $val =~ s/\n/\n$f: /g;
113            $s .= "$f: $val\n";
114        }
115    }
116    return $s;
117}
118
119=head2 log MESSAGE
120
121Returns the text that should be written to a file to log C<MESSAGE>.
122
123=cut
124
125sub log {
126    my ($m) = @_;
127    return $m->log_header . "\n\n" . $m->log_body . "\n\n";
128}
129
130=head2 log_header MESSAGE
131
132Returns the header of the message, for logging purposes.
133If you override L<BarnOwl::Message::log>, this method is not called.
134
135=cut
136
137sub log_header {
138    my ($m) = @_;
139    my $sender = $m->sender;
140    my $recipient = $m->recipient;
141    my $timestr = $m->time;
142    return "From: <$sender> To: <$recipient>\n"
143         . "Time: $timestr";
144}
145
146=head2 log_body MESSAGE
147
148Returns the body of the message, for logging purposes.
149If you override L<BarnOwl::Message::log>, this method is not called.
150
151=cut
152
153sub log_body {
154    my ($m) = @_;
155    if ($m->is_loginout) {
156        return uc($m->login)
157            . $m->login_type
158            . ($m->login_extra ? ' at ' . $m->login_extra : '');
159    } else {
160        return $m->body;
161    }
162}
163
164=head2 log_filenames MESSAGE
165
166Returns a list of filenames to which this message should be logged.
167The filenames should be relative to the path returned by
168C<log_base_path>.  See L<BarnOwl::Logging::get_filenames> for the
169specification of valid filenames, and for what happens if this
170method returns an invalid filename.
171
172=cut
173
174sub log_filenames {
175    my ($m) = @_;
176    my $filename = lc($m->type);
177    $filename = "unknown" if !defined $filename || $filename eq '';
178    if ($m->is_incoming && $m->pretty_sender) {
179        $filename .= ":" . $m->pretty_sender;
180    } elsif ($m->is_outgoing && $m->pretty_recipient) {
181        $filename .= ":" . $m->pretty_recipient;
182    }
183    return ($filename);
184}
185
186=head2 log_to_all_file MESSAGE
187
188There is an C<all> file.  This method determines if C<MESSAGE>
189should get logged to it, in addition to any files returned by
190C<log_filenames>.
191
192It defaults to returning true if and only if C<MESSAGE> is outgoing.
193
194=cut
195
196sub log_to_all_file {
197    my ($m) = @_;
198    return $m->is_outgoing;
199}
200
201=head2 log_base_path MESSAGE
202
203Returns the base path for logging, the folder in which all messages
204of this class get logged.
205
206Defaults to the BarnOwl variable C<logpath>.
207
208=cut
209
210sub log_base_path {
211    return BarnOwl::getvar('logpath');
212}
213
214# Populate the annoying legacy global variables
215sub legacy_populate_global {
216    my ($m) = @_;
217    $BarnOwl::direction  = $m->direction ;
218    $BarnOwl::type       = $m->type      ;
219    $BarnOwl::id         = $m->id        ;
220    $BarnOwl::class      = $m->class     ;
221    $BarnOwl::instance   = $m->instance  ;
222    $BarnOwl::recipient  = $m->recipient ;
223    $BarnOwl::sender     = $m->sender    ;
224    $BarnOwl::realm      = $m->realm     ;
225    $BarnOwl::opcode     = $m->opcode    ;
226    $BarnOwl::zsig       = $m->zsig      ;
227    $BarnOwl::msg        = $m->body      ;
228    $BarnOwl::time       = $m->time      ;
229    $BarnOwl::host       = $m->host      ;
230    $BarnOwl::login      = $m->login     ;
231    $BarnOwl::auth       = $m->auth      ;
232    if ($m->fields) {
233        @BarnOwl::fields = @{$m->fields};
234        @main::fields = @{$m->fields};
235    } else {
236        @BarnOwl::fields = undef;
237        @main::fields = undef;
238    }
239}
240
241sub smartfilter {
242    die("smartfilter not supported for this message\n");
243}
244
245# Display fields -- overridden by subclasses when needed
246sub login_type {""}
247sub login_extra {""}
248sub long_sender {""}
249
250# The context in which a non-personal message was sent, e.g. a chat or
251# class
252sub context {""}
253
254# Some indicator of context *within* $self->context. e.g. the zephyr
255# instance
256sub subcontext {""}
257
258
2591;
Note: See TracBrowser for help on using the repository browser.