blob: b09ffcf47ed6f9d5bf676613c812c14d3481fa04 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
Marc Kupietzbf9bac02022-04-11 21:16:47 +02002our $VERSION = '0.90';
3
Marc Kupietzc82b15f2022-07-19 17:36:27 +02004use IDS::DeReKoVecs::Read;
Marc Kupietzdc22b982015-10-09 09:19:34 +02005use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01006use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz30ca4342017-11-22 21:21:20 +01007use base 'Mojolicious::Plugin';
8
Marc Kupietz247500f2015-10-09 11:29:01 +02009use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +010010use Getopt::Std;
Marc Kupietze8e3ded2020-07-13 17:53:56 +020011#use Mojo::Server::Daemon;
Marc Kupietzffef9302017-11-07 15:58:01 +010012use Cwd;
Marc Kupietz66bfd952017-12-11 09:59:45 +010013
Marc Kupietzbf9bac02022-04-11 21:16:47 +020014my $mojo_config = $ENV{MOJO_CONFIG} // '../derekovecs-server.conf';
Marc Kupietzc0d41872021-02-25 16:33:22 +010015plugin Config => {file => $mojo_config};
16
Marc K20476c72021-03-11 12:18:01 +010017my $DEFAULT_VECS = app->config->{w2v}->{vecs} // "../models/dereko-2021-i.vecs";
Marc Kupietzc0d41872021-02-25 16:33:22 +010018my $DEFAULT_NET_NAME = "";
19if ($DEFAULT_VECS=~ /\.vecs/) {
20 $DEFAULT_NET_NAME = $DEFAULT_VECS;
21 $DEFAULT_NET_NAME =~ s/\.vecs/.net/;
22}
23my $DEFAULT_NET = app->config->{w2v}->{net} // $DEFAULT_NET_NAME;
Marc Kupietz397ce852020-07-13 17:52:21 +020024
Marc Kupietzffef9302017-11-07 15:58:01 +010025app->static->paths->[0] = getcwd;
26
Marc Kupietz1b856fa2019-12-07 23:01:43 +010027plugin 'Piwik';
Marc Kupietz2b8d44a2019-12-09 10:38:16 +010028plugin "RemoteAddr";
Marc Kupietz1b856fa2019-12-07 23:01:43 +010029plugin 'Util::RandomString' => {
30 piwik_rand_id => {
31 alphabet => '0123456789abcdef',
32 length => 16
33 }
34};
35
Marc Kupietzd4227392016-03-01 16:45:12 +010036plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020037plugin "RequestBase";
Marc Kupietz95104512019-12-05 10:13:05 +010038#plugin 'AutoReload';
39plugin Localize => {
40 dict => {
41 _ => sub { $_->locale },
42 },
Marc Kupietzbf9bac02022-04-11 21:16:47 +020043 resources => ['../derekovecs-server.dict']
Marc Kupietz95104512019-12-05 10:13:05 +010044};
Marc Kupietza5b90152016-03-15 17:39:19 +010045our $opt_i = 0; # latin1-input?
46our $opt_l = undef;
Marc Kupietza2e64502016-04-27 09:53:51 +020047our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020048our $opt_M;
Marc Kupietze8e3ded2020-07-13 17:53:56 +020049our $opt_n = $DEFAULT_NET;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020050our $opt_d;
Marc Kupietzfa194262018-06-05 09:39:32 +020051our $opt_D;
Marc Kupietze8e3ded2020-07-13 17:53:56 +020052our $opt_G = 1;
Marc Kupietzbf9bac02022-04-11 21:16:47 +020053
54our $mergedEnd=0;
55our %cache;
56our %cccache; # classic collocator cache
57our %spcache; # similar profile cache
58our $opt_p = 5676;
Marc Kupietze8e3ded2020-07-13 17:53:56 +020059our $opt_C;
Marc Kupietza5b90152016-03-15 17:39:19 +010060
Marc Kupietz6ed81872016-04-27 14:04:04 +020061my %marked;
Marc Kupietzc053d972019-01-10 10:41:51 +010062my $title="";
Marc Kupietz793413b2016-04-02 21:48:57 +020063my $training_args="";
64
Marc Kupietzc82b15f2022-07-19 17:36:27 +020065getopts('d:D:Gil:p:m:n:M:C') or usage();
66
67sub usage() {
68 print STDERR <<EOF;
69non-server mode usage: MOJO_CONFIG=`pwd`/example.conf $0 [-h] [-d <file>]
70-h : this (help) message
71-d file : dump binary vecs as ascii text to <file>
72
73server-mode invocation:
74
75MOJO_CONFIG=`pwd`/example.conf morbo $0
76EOF
77 exit;
78}
Marc Kupietz6ed81872016-04-27 14:04:04 +020079
80if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020081 open my $handle, '<:encoding(UTF-8)', $opt_M
82 or die "Can't open '$opt_M' for reading: $!";
83 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020084 foreach my $mw (split /\s+/) {
85 $marked{$mw}=1
86 }
87 }
Marc Kupietzed930212016-04-27 15:42:38 +020088 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020089}
Marc Kupietza5b90152016-03-15 17:39:19 +010090
Marc Kupietze8e3ded2020-07-13 17:53:56 +020091my $vecs_name = (@ARGV > 0 && -r $ARGV[0] ? $ARGV[0] : $DEFAULT_VECS);
92init_net($vecs_name, $opt_n, ($opt_i? 1 : 0), 1);
93if(open(FILE, "$vecs_name.args")) {
94 $training_args = <FILE>;
Marc Kupietz2cb667e2016-03-10 09:44:12 +010095}
Marc Kupietze8e3ded2020-07-13 17:53:56 +020096close(FILE);
97$title = fname2corpusname($vecs_name);
Marc Kupietzdc22b982015-10-09 09:19:34 +020098
Marc Kupietze8e3ded2020-07-13 17:53:56 +020099my $have_sprofiles = load_sprofiles($vecs_name);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100100
Marc Kupietzc0d41872021-02-25 16:33:22 +0100101if (app->config->{w2v}->{merge}) {
102 $opt_m = app->config->{w2v}->{merge};
103}
104
Marc Kupietza2e64502016-04-27 09:53:51 +0200105if($opt_m) {
106 $mergedEnd = mergeVectors($opt_m);
Marc Kupietzc053d972019-01-10 10:41:51 +0100107 $title = "<span class=\"merged\">" . $title . "</span> vs. " . fname2corpusname($opt_m);
Marc Kupietza2e64502016-04-27 09:53:51 +0200108}
109
Marc Kupietze5568a02018-12-20 11:42:02 +0100110
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200111if($opt_d) { # -d: dump vecs and exit
112 dump_vecs($opt_d);
113 exit;
114}
115
Marc Kupietzfa194262018-06-05 09:39:32 +0200116if($opt_D) { # -D: dump vecs for numpy and exit
117 dump_for_numpy($opt_D);
118 exit;
119}
120
Marc Kupietze8e3ded2020-07-13 17:53:56 +0200121#my $daemon = Mojo::Server::Daemon->new(
122# app => app,
123# listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
124#);
Marc Kupietza5b90152016-03-15 17:39:19 +0100125
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200126if($opt_G) {
127 print "Filtering garbage\n";
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100128 filter_garbage();
Marc Kupietzc0d41872021-02-25 16:33:22 +0100129 print "Finished filtering garbage\n";
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200130}
131
Marc Kupietz554aff52017-11-09 14:42:09 +0100132get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +0100133 my $c = shift;
134 my $url = $c->req->url;
Marc K20476c72021-03-11 12:18:01 +0100135 $url =~ s@/derekovecs/@/@g;
Marc Kupietzffef9302017-11-07 15:58:01 +0100136 $c->app->log->info("GET: " . $url);
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100137 $c->reply->static($url);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100138} => 'js';
Marc Kupietzffef9302017-11-07 15:58:01 +0100139
Marc Kupietza9270572018-03-17 15:17:07 +0100140get '*/css/*' => sub {
141 my $c = shift;
142 my $url = $c->req->url;
143 $url =~ s@/derekovecs/@/@g;
144 $c->app->log->info("GET: " . $url);
145 $c->reply->static($url);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100146} => 'css';
Marc Kupietza9270572018-03-17 15:17:07 +0100147
Marc Kupietzc053d972019-01-10 10:41:51 +0100148sub fname2corpusname {
149 ($_) = @_;
150 s@.*/@@;
Marc Kupietz86b50292019-02-17 21:03:59 +0100151 s@\.en@-en@;
Marc Kupietzc053d972019-01-10 10:41:51 +0100152 s@\..*@@;
153 return $_;
154}
155
Marc Kupietzcb43e492019-12-03 10:07:53 +0100156sub getWord {
157 ($_) = @_;
158 if ($_ =~ /^\d+/) {
159 return $_;
160 } else {
161 return getWordNumber($_);
162 }
163}
164
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100165
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100166post '/derekovecs/getVecsByRanks' => sub {
Marc Kupietz66bfd952017-12-11 09:59:45 +0100167 my $self = shift;
168 my $vec = getVecs($self->req->json);
169 $self->render(json => $vec);
170};
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100171
Marc Kupietzf6080012021-03-12 09:14:42 +0100172any '*/getCollocationAssociation' => sub {
173 my $self = shift;
174 $self->render(data => getCollocationAssociation($self, getWord($self->param("w") ? $self->param("w") : $self->req->json), getWord($self->param("c"))), format=>'json');
175} => 'getCollocationAssociation';
176
177any '/getCollocationAssociation' => sub {
178 my $self = shift;
179 $self->render(data => getCollocationAssociation($self, getWord($self->param("w") ? $self->param("w") : $self->req->json), getWord($self->param("c"))), format=>'json');
180} => 'getCollocationAssociation1';
181
Marc Kupietze13a3552018-01-25 08:48:34 +0100182any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100183 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100184 $self->render(data => getClassicCollocatorsCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100185} => 'getClassicCollocators1';
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100186
Marc Kupietze13a3552018-01-25 08:48:34 +0100187any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100188 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100189 $self->render(data => getClassicCollocatorsCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100190} => 'getClassicCollocators';
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100191
Marc Kupietzd7760b42019-02-21 09:01:44 +0100192any '/getBiggestVocabDistances' => sub {
193 my $self = shift;
194 $self->render(data => getBiggestMergedDifferences(), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100195} => 'getBiggestVocabDistances1';
Marc Kupietzd7760b42019-02-21 09:01:44 +0100196
197any '*/getBiggestVocabDistances' => sub {
198 my $self = shift;
199 $self->render(data => getBiggestMergedDifferences(), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100200} => 'getBiggestVocabDistances';
Marc Kupietzd7760b42019-02-21 09:01:44 +0100201
Marc Kupietz33c79d32019-08-02 15:11:23 +0200202any '*/getPosWiseW2VCollocators' => sub {
203 my $self = shift;
204 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
205 ($self->param("max")? $self->param("max") : 200),
206 ($self->param("cutoff")? $self->param("cutoff") :750000),
207 ($self->param("threshold")? $self->param("threshold") : 0.2)),
208 format=>'tsv');
209};
210
211any '/getPosWiseW2VCollocators' => sub {
212 my $self = shift;
213 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
214 ($self->param("max")? $self->param("max") : 200),
215 ($self->param("cutoff")? $self->param("cutoff") : 750000),
216 ($self->param("threshold")? $self->param("threshold") : 0.2)),
217 format=>'tsv');
218};
219
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100220any '*/getSimilarProfiles' => sub {
221 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100222 $self->render(data => getSimilarProfilesCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100223};
224
Marc Kupietzc987fa82018-03-21 12:14:25 +0100225any '/getSimilarProfiles' => sub {
226 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100227 $self->render(data => getSimilarProfilesCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietzc987fa82018-03-21 12:14:25 +0100228};
229
Marc Kupietz9f301572020-04-06 18:29:16 +0200230any '*/getWord' => sub {
231 my $self = shift;
232 my $w = $self->param("w");
233 my $rank = getWord($w);
234 my $status = 200;
235 if ($rank <= 0) {
236 $rank = -1;
237 $status = 404;
238 }
239 $self->render(data => encode_json({word => $w, frequencyRank => $rank}), format => 'json', status => $status);
240};
241
242any '/getWord' => sub {
243 my $self = shift;
244 my $w = $self->param("w");
245 my $rank = getWord($w);
246 my $status = 200;
247 if ($rank <= 0) {
248 $rank = -1;
249 $status = 404;
250 }
251 $self->render(data => encode_json({word => $w, frequencyRank => $rank}), format => 'json', status => $status);
252};
253
Marc Kupietz98ed1c02019-08-02 15:05:37 +0200254any '/getSimilarity' => sub {
255 my $self = shift;
256 my $w1 = $self->param("w1");
257 my $w2 = $self->param("w2");
258 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
259};
260
261any '*/getSimilarity' => sub {
262 my $self = shift;
263 my $w1 = $self->param("w1");
264 my $w2 = $self->param("w2");
265 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
266};
267
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100268get '*/img/*' => sub {
269 my $c = shift;
270 my $url = $c->req->url;
271 $url =~ s@/derekovecs@@g;
272 $c->app->log->info("GET: " . $url);
273 $c->reply->static($url);
274};
275
Marc Kupietzdc22b982015-10-09 09:19:34 +0200276get '/' => sub {
277 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200278 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200279 my $word=$c->param('word');
Marc Kupietz2da2a812019-02-21 14:17:35 +0100280 my $no_nbs=$c->param('n') || ($opt_m? 50 : 100);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100281 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100282 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100283 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100284 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200285 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100286 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100287 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200288 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100289 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100290 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100291 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100292 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100293 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100294 my @collocations;
Marc Kupietzcddc8482019-12-04 08:57:33 +0100295 if(defined($word) && $word !~ /^\s*$/) {
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100296 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100297 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100298 if($opt_m && $word !~ /\|/) {
299 $word .= "|$word";
300 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100301 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100302 if($opt_m) {
303 if($searchBaseVocabFirst) {
304 $searchBaseVocabFirst=0;
305 } else {
306 $searchBaseVocabFirst=1;
307 }
308 }
309 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100310 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100311 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100312 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100313 $c->app->log->info('Looking for neighbours of '.$w);
314 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100315 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100316 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100317 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100318 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100319 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100320 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100321 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100322 }
323 }
Marc Kupietz56844a22019-08-02 15:12:19 +0200324
Marc Kupietz000ad862016-02-26 14:59:12 +0100325 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200326 if($json) {
327 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100328 } elsif($csv) {
329 my $csv_data="";
330 for (my $i=0; $i <= $no_nbs; $i++) {
331 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
332 }
333 for (my $i=0; $i < $no_nbs; $i++) {
334 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
335 }
336 chop $csv_data;
337 chop $csv_data;
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100338 $csv_data .= "\n";
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100339 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200340 } else {
Marc Kupietzd7760b42019-02-21 09:01:44 +0100341 my $distantWords="";
342 if(!defined($word) || $word !~ /^\s*$/) {
343 $distantWords = getBiggestMergedDifferences();
344 }
345 $c->render(template=>"index", title=>$title, word=>$word, distantWords=>$distantWords, cutoff=>$cutoff, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, searchBaseVocabFirst=>$searchBaseVocabFirst, sort=>$sort, training_args=>$training_args, mergedEnd=> $mergedEnd, haveSProfiles=> $have_sprofiles, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzb613b052016-04-28 14:11:59 +0200346 }
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100347} => "paradigmaticAndSyntagmaticNbs";
Marc Kupietzdc22b982015-10-09 09:19:34 +0200348
Marc Kupietz30ca4342017-11-22 21:21:20 +0100349helper(bitvec2window => sub {
350 my ($self, $n) = @_;
351 my $str = unpack("B32", pack("N", $n));
352 $str =~ s/^\d{22}//;
353 $str =~ s/^(\d{5})/$1x/;
354 $str =~ s/0/ยท/g;
355 $str =~ s/1/+/g;
356 return $str;
357 });
358
Marc Kupietz6017daf2022-05-19 09:22:49 +0200359if(app->config->{Piwik} && app->config->{Piwik}->{url}) {
Marc Kupietz3e3e3262022-04-12 23:11:45 +0200360 hook(
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100361 after_render => sub {
362 my $c = shift;
363
364 # Only track valid routes
365 my $route = $c->current_route or return;
366
367 # This won't forward personalized information
368 my $hash = {
Marc Kupietz251de9f2020-01-14 16:12:05 +0100369 action_url => $c->req->url->to_abs,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100370 action_name => $route,
Marc Kupietz251de9f2020-01-14 16:12:05 +0100371 ua => $c->req->headers->user_agent,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100372 urlref => '',
373 send_image => 0,
374 dnt => 0,
Marc Kupietz251de9f2020-01-14 16:12:05 +0100375 cip => $c->remote_addr,
376 lang => $c->req->headers->accept_language,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100377 uid => $c->random_string('piwik_rand_id')
378 };
Marc Kupietz251de9f2020-01-14 16:12:05 +0100379 # $c->app->log->info("PIWIK: counting " . $hash->{action_url} . "\nremote:" . $c->remote_addr);
380 # $c->app->log->info("PIWIK: tag " . $c->piwik_tag);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100381
382 # Send track
383 $c->piwik->api_p(Track => $hash)->wait;
Marc Kupietz251de9f2020-01-14 16:12:05 +0100384
385 # $c->app->log->info("PIWIK: counted.");
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100386 }
Marc Kupietz3e3e3262022-04-12 23:11:45 +0200387 );
388}
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100389
Marc Kupietzbf9bac02022-04-11 21:16:47 +0200390app->renderer->paths([app->home->rel_file('../templates')]);
Marc Kupietze8e3ded2020-07-13 17:53:56 +0200391app->start;
392#$daemon->run;
Marc Kupietz95104512019-12-05 10:13:05 +0100393# app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200394
Marc Kupietz95104512019-12-05 10:13:05 +0100395# exit;