OSDN Git Service

cd938a8ab5ef8333b4c11b9b5b76d1eda7fde92b
[mt-acme/Lovers.git] / lib / Lovers / LoveLetter.pm
1 # Copyright (c) 2008 Movable Type ACME Plugin Project, All rights reserved.
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 # THE SOFTWARE.
20
21 package Lovers::LoveLetter;
22 use strict;
23
24 use MT::Object;
25 use base qw( MT::Object );
26
27 __PACKAGE__->install_properties({
28         column_defs => {
29                 'id' => 'integer not null auto_increment',
30
31                 'love_letter_id' => 'string(255)',
32                 'entry_id' => 'integer not null',
33                 'template_id' => 'integer not null',
34                 'author_id' => 'integer not null',
35
36                 'from' => 'string(255)',
37                 'to' => 'string(255)',
38                 'language' => 'string(10)',
39
40                 'sent_on' => 'datetime',
41         },
42         audit => 1,
43         indexes => {
44                 love_letter_id => 1,
45         },
46         default => {
47                 sent_on => '00000000000000',
48         },
49         datasource => 'love_letter',
50         primary_key => 'id',
51 });
52
53 sub mail_param {
54         my $self = shift;
55         my $app = MT->instance;
56         my $param = $self->column_values;
57         if (! $param->{'from'}) {
58                 my $author_class = $app->model('author');
59                 my $author = $author_class->load($param->{'author_id'});
60                 $param->{'from'} =
61                         $author->nickname . ' <' . $author->email . '>';
62         }
63
64         $param;
65 }
66
67 1;