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
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MyDashboard::BugInterest;
use 5.10.1;
use strict;
use parent qw(Bugzilla::Object);
#####################################################################
# Overriden Constants that are used as methods
#####################################################################
use constant DB_TABLE => 'bug_interest';
use constant DB_COLUMNS => qw( id bug_id user_id modification_time );
use constant UPDATE_COLUMNS => qw( modification_time );
use constant VALIDATORS => {};
use constant LIST_ORDER => 'id';
use constant NAME_FIELD => 'id';
# turn off auditing and exclude these objects from memcached
use constant { AUDIT_CREATES => 0,
AUDIT_UPDATES => 0,
AUDIT_REMOVES => 0,
USE_MEMCACHED => 0 };
#####################################################################
# Provide accessors for our columns
#####################################################################
sub id { return $_[0]->{id} }
sub bug_id { return $_[0]->{bug_id} }
sub user_id { return $_[0]->{user_id} }
sub modification_time { return $_[0]->{modification_time} }
sub mark {
my ($class, $user_id, $bug_id, $timestamp) = @_;
my ($interest) = @{ $class->match({ user_id => $user_id,
bug_id => $bug_id }) };
if ($interest) {
$interest->set(modification_time => $timestamp);
$interest->update();
return $interest;
}
else {
return $class->create({
user_id => $user_id,
bug_id => $bug_id,
modification_time => $timestamp,
});
}
}
sub unmark {
my ($class, $user_id, $bug_id) = @_;
my ($interest) = @{ $class->match({ user_id => $user_id,
bug_id => $bug_id }) };
if ($interest) {
$interest->remove_from_db();
}
}
1;
|