summaryrefslogtreecommitdiff
path: root/lib/VNWeb/User/Notifications.pm
blob: 59512f058b7a5c4751dd9d30821640897404c644 (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
package VNWeb::User::Notifications;

use VNWeb::Prelude;

my %ntypes = (
    pm       => 'Private Message',
    dbdel    => 'Entry you contributed to has been deleted',
    listdel  => 'VN in your (wish)list has been deleted',
    dbedit   => 'Entry you contributed to has been edited',
    announce => 'Site announcement',
);


sub settings_ {
    my $id = shift;

    h1_ 'Settings';
    form_ action => "/u$id/notify_options", method => 'POST', sub {
        input_ type => 'hidden', class => 'hidden', name => 'csrf', value => auth->csrftoken;
        p_ sub {
            label_ sub {
                input_ type => 'checkbox', name => 'dbedit', auth->pref('notify_dbedit') ? (checked => 'checked') : ();
                txt_ ' Notify me about edits of database entries I contributed to.';
            };
            br_;
            label_ sub {
                input_ type => 'checkbox', name => 'announce', auth->pref('notify_announce') ? (checked => 'checked') : ();
                txt_ ' Notify me about site announcements.';
            };
            br_;
            input_ type => 'submit', class => 'submit', value => 'Save';
        }
    };
}


sub listing_ {
    my($id, $opt, $count, $list) = @_;

    my sub url { "/u$id/notifies?r=$opt->{r}&p=$_" }

    my sub tbl_ {
        thead_ sub { tr_ sub {
            td_ '';
            td_ 'Type';
            td_ 'Age';
            td_ 'ID';
            td_ 'Action';
        }};
        tfoot_ sub { tr_ sub {
            td_ colspan => 5, sub {
                input_ type => 'checkbox', class => 'checkall', name => 'notifysel', value => 0;
                txt_ ' ';
                input_ type => 'submit', class => 'submit', name => 'markread', value => 'mark selected read';
                input_ type => 'submit', class => 'submit', name => 'remove', value => 'remove selected';
                b_ class => 'grayedout', ' (Read notifications are automatically removed after one month)';
            }
        }};
        tr_ $_->{read} ? () : (class => 'unread'), sub {
            my $l = $_;
            my $lid = $l->{ltype}.$l->{iid}.($l->{subid}?'.'.$l->{subid}:'');
            my $url = "/u$id/notify/$l->{id}/$lid";
            td_ class => 'tc1', sub { input_ type => 'checkbox', name => 'notifysel', value => $l->{id}; };
            td_ class => 'tc2', $ntypes{$l->{ntype}};
            td_ class => 'tc3', fmtage $l->{date};
            td_ class => 'tc4', sub { a_ href => $url, $lid };
            td_ class => 'tc5', sub {
                a_ href => $url, sub {
                    txt_ $l->{ltype} ne 't' ? 'Edit of ' : $l->{subid} == 1 ? 'New thread ' : 'Reply to ';
                    i_ $l->{c_title};
                    txt_ ' by ';
                    i_ user_displayname $l;
                };
            };
        } for @$list;
    }

    form_ action => "/u$id/notify_update", method => 'POST', sub {
        input_ type => 'hidden', class => 'hidden', name => 'url', value => do { local $_ = $opt->{p}; url };
        paginate_ \&url, $opt->{p}, [$count, 25], 't';
        div_ class => 'mainbox browse notifies', sub {
            table_ class => 'stripe', \&tbl_;
        };
        paginate_ \&url, $opt->{p}, [$count, 25], 'b';
    } if $count;
}


TUWF::get qr{/$RE{uid}/notifies}, sub {
    my $id = tuwf->capture('id');
    return tuwf->resNotFound if !auth || $id != auth->uid;

    my $opt = tuwf->validate(get =>
        p => { page => 1 },
        r => { anybool => 1 },
    )->data;

    my $where = sql_and(
        sql('uid =', \$id),
        $opt->{r} ? () : 'read IS NULL'
    );
    my $count = tuwf->dbVali('SELECT count(*) FROM notifications WHERE', $where);
    my $list = tuwf->dbPagei({ results => 25, page => $opt->{p} },
       'SELECT n.id, n.ntype, n.ltype, n.iid, n.subid, n.c_title
             , ', sql_totime('n.date'), ' as date
             , ', sql_totime('n.read'), ' as read
             , ', sql_user(),
         'FROM notifications n
          LEFT JOIN users u ON u.id = n.c_byuser
         WHERE ', $where,
        'ORDER BY n.id', $opt->{r} ? 'DESC' : 'ASC'
    );

    framework_ title => 'My notifications', js => 1,
    sub {
        div_ class => 'mainbox', sub {
            h1_ 'My notifications';
            p_ class => 'browseopts', sub {
                a_ !$opt->{r} ? (class => 'optselected') : (), href => '?r=0', 'Unread notifications';
                a_  $opt->{r} ? (class => 'optselected') : (), href => '?r=1', 'All notifications';
            };
            p_ 'No notifications!' if !$count;
        };
        listing_ $id, $opt, $count, $list;
        div_ class => 'mainbox', sub { settings_ $id };
    };
};


TUWF::post qr{/$RE{uid}/notify_options}, sub {
    my $id = tuwf->capture('id');
    return tuwf->resNotFound if !auth || $id != auth->uid;

    my $frm = tuwf->validate(post =>
        csrf     => {},
        dbedit   => { anybool => 1 },
        announce => { anybool => 1 },
    )->data;
    return tuwf->resNotFound if !auth->csrfcheck($frm->{csrf});

    auth->prefSet(notify_dbedit   => $frm->{dbedit});
    auth->prefSet(notify_announce => $frm->{announce});
    tuwf->resRedirect("/u$id/notifies", 'post');
};


TUWF::post qr{/$RE{uid}/notify_update}, sub {
    my $id = tuwf->capture('id');
    return tuwf->resNotFound if !auth || $id != auth->uid;

    my $frm = tuwf->validate(post =>
        url       => { regex => qr{^/u$id/notifies} },
        notifysel => { required => 0, default => [], type => 'array', scalar => 1, values => { id => 1 } },
        markread  => { anybool => 1 },
        remove    => { anybool => 1 },
    )->data;

    if($frm->{notifysel}->@*) {
        my $where = sql 'uid =', \$id, ' AND id IN', $frm->{notifysel};
        tuwf->dbExeci('DELETE FROM notifications WHERE', $where) if $frm->{remove};
        tuwf->dbExeci('UPDATE notifications SET read = NOW() WHERE', $where) if $frm->{markread};
    }
    tuwf->resRedirect($frm->{url}, 'post');
};


TUWF::get qr{/$RE{uid}/notify/$RE{num}/(?<lid>[a-z0-9\.]+)}, sub {
    my $id = tuwf->capture('id');
    return tuwf->resNotFound if !auth || $id != auth->uid;
    tuwf->dbExeci('UPDATE notifications SET read = NOW() WHERE read IS NULL AND uid =', \$id, ' AND id =', \tuwf->capture('num'));
    tuwf->resRedirect('/'.tuwf->capture('lid'), 'temp');
};

1;