/[SVNBrowser]/trunk/lib/SVNBrowser/Action/Filter.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/SVNBrowser/Action/Filter.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show annotations)
Tue Feb 6 23:28:48 2007 UTC (17 years, 3 months ago) by dpavlin
File size: 3809 byte(s)
added rel_path variable and ability to filter using beginning of path
(*without* checkout!)
1 use strict;
2 use warnings;
3
4 =head1 NAME
5
6 SVNBrowser::Action::Filter
7
8 =cut
9
10 package SVNBrowser::Action::Filter;
11 use base qw/SVNBrowser::Action Jifty::Action/;
12
13 use Data::Dump qw/dump/;
14
15 use Jifty::Param::Schema;
16 use Jifty::Action schema {
17 param author =>
18 label is 'Developer login',
19 render as 'combobox',
20 available are defer {
21 my $authors = SVNBrowser::Model::RevisionCollection->new;
22 $authors->column(
23 column => 'author',
24 function => 'distinct',
25 );
26 $authors->unlimit;
27 $authors->order_by({ column => 'author', order => 'ASC' });
28 warn "authors ", $authors->build_select_query;
29 [{
30 display_from => 'author',
31 value_from => 'author',
32 collection => $authors,
33 }];
34 };
35
36 param branch =>
37 label is 'In branch',
38 render as 'combobox',
39 available are defer {
40 my $branches = SVNBrowser::Model::BranchCollection->new;
41 $branches->column(
42 column => 'path',
43 function => 'distinct',
44 );
45 $branches->unlimit;
46 $branches->order_by({ column => 'path', order => 'ASC' });
47 warn "branches ", $branches->build_select_query;
48 [{
49 display_from => 'path',
50 value_from => 'path',
51 collection => $branches,
52 }];
53 };
54
55 param rel_path =>
56 label is 'File path',
57 hint is 'enter beggining of file path to filter using it';
58
59 param show_actions =>
60 label is 'Show file actions',
61 render as 'checkbox';
62
63 param page =>
64 label is 'Current page';
65
66 param per_page =>
67 label is 'Commits on page',
68 render as 'Select',
69 available are qw( 10 20 30 50 100 );
70
71 param from_date =>
72 label is 'From date',
73 render as 'Date';
74
75 param to_date =>
76 label is 'To date',
77 render as 'Date';
78
79 param search =>
80 label is 'Search in messages';
81
82 };
83
84 sub sticky_on_success { 1; }
85
86 =head2 take_action
87
88 =cut
89
90 sub take_action {
91 my $self = shift;
92
93 my $revisions = SVNBrowser::Model::RevisionCollection->new();
94 $revisions->unlimit();
95
96 if ( my $author = $self->argument_value('author') ) {
97 $revisions->limit( column => 'author', value => $author, entry_aggregator => 'AND' );
98 }
99
100 if ( my $from_date = $self->argument_value('from_date') ) {
101 $revisions->limit( column => 'commit_date', operator => '>=', value => $from_date, entry_aggregator => 'AND', case_sensitive => 1 );
102 }
103
104 if ( my $to_date = $self->argument_value('to_date') ) {
105 $revisions->limit( column => 'commit_date', operator => '<=', value => $to_date, entry_aggregator => 'AND', case_sensitive => 1 );
106 }
107
108 if ( my $search = $self->argument_value('search') ) {
109 $revisions->limit( column => 'message', operator => 'LIKE', value => '%' . $search . '%' );
110 }
111
112 if ( my $branch = $self->argument_value('branch') ) {
113 my $b = SVNBrowser::Model::Branch->new();
114 $b->load_by_cols( path => $branch );
115
116 my $rev_branches = $revisions->join(
117 alias1 => 'main', column1 => 'revision',
118 table2 => 'revision_branches', column2 => 'revision'
119 );
120 $revisions->limit( alias => $rev_branches, column => 'branch', value => $b->id );
121 }
122
123 if ( my $rel_path = $self->argument_value('rel_path') ) {
124 my $rev_actions = $revisions->join(
125 alias1 => 'main', column1 => 'revision',
126 table2 => 'actions', column2 => 'revision'
127 );
128 $revisions->limit( alias => $rev_actions, column => 'rel_path', value => $rel_path, operator => 'STARTSWITH' );
129 }
130
131 $revisions->order_by({ column => 'commit_date', order => 'desc' });
132 $revisions->set_page_info(
133 current_page => $self->argument_value('page'),
134 per_page => $self->argument_value('per_page'),
135 );
136
137 warn "take_action SQL: ", $revisions->build_select_query;
138
139 $revisions->goto_first_item;
140
141 my $msg = '';
142 if (my $nr = $revisions->pager->total_entries) {
143 $msg .= "Found $nr revisions";
144 } else {
145 $msg .= "No revisions found";
146 }
147
148 $self->result->message($msg);
149
150 $self->result->content( revisions => $revisions );
151
152 return 1;
153 }
154
155
156 1;
157

  ViewVC Help
Powered by ViewVC 1.1.26