forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecent_changes.pl
68 lines (54 loc) · 2.05 KB
/
recent_changes.pl
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
#!/usr/bin/perl
# This file is part of Product Opener.
#
# Product Opener
# Copyright (C) 2011-2023 Association Open Food Facts
# Contact: [email protected]
# Address: 21 rue des Iles, 94100 Saint-Maur des Fossés, France
#
# Product Opener is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
use ProductOpener::PerlStandards;
use CGI::Carp qw(fatalsToBrowser);
use CGI qw/:cgi :form escapeHTML/;
use ProductOpener::Config qw/:all/;
use ProductOpener::Store qw/:all/;
use ProductOpener::Index qw/:all/;
use ProductOpener::Display qw/display_recent_changes init_request single_param/;
use ProductOpener::Users qw/:all/;
use ProductOpener::Products qw/:all/;
use ProductOpener::Food qw/:all/;
use ProductOpener::Tags qw/:all/;
use CGI qw/:cgi :form escapeHTML/;
use URI::Escape::XS;
use Storable qw/dclone/;
use Encode;
use JSON::MaybeXS;
use ProductOpener::Lang qw/:all/;
my $request_ref = ProductOpener::Display::init_request();
my $query_ref = {};
my $limit = 0 + (single_param('page_size') || $options{default_recent_changes_page_size});
if ($limit > $options{max_recent_changes_page_size}) {
$limit = $options{max_recent_changes_page_size};
}
my $page = 0 + (single_param('page') || 1);
if (($page < 1) or ($page > 1000)) {
$page = 1;
}
my $request_ref = {current_link_query => ''};
foreach my $parameter ('json') {
if (defined single_param($parameter)) {
$request_ref->{$parameter} = single_param($parameter);
}
}
display_recent_changes($request_ref, $query_ref, $limit, $page);