11 use POSIX
qw(strftime);
13 my ( $help, $verbose, $force, $quiet );
16 'v|verbose' => \
$verbose,
25 unless ( C4
::Context
->preference('UsageStats') ) {
29 The UsageStats
system preference is
not set
.
30 If your library wants to share their usage statistics with the Koha community
, you have to switch on this
system preference
32 Setting the quiet flag will silence this message
.
40 my $need_update = ($force ?
1 : C4
::UsageStats
::NeedUpdate
() );
43 say "Data need to be updated" if $verbose;
44 my $report = C4
::UsageStats
::BuildReport
();
45 C4
::UsageStats
::ReportToCommunity
($report);
46 C4
::Context
->set_preference( 'UsageStatsLastUpdateTime',
47 strftime
( "%s", localtime ) );
50 say "Data don't need to be updated";
55 share_usage_with_koha_community.pl - Share your library's usage with the Koha community
59 share_usage_with_koha_community.pl [-h|--help] [-v|--verbose] [-f|--force] [-q|--quiet]
61 If the UsageStats system preference is set, you can launch this script to share your usage data
62 anonymously with the Koha community.
64 Collecting Koha usage statistics will help developers to know how Koha is used across the world.
66 This script will send the usage data for the bibliographic and authority records, checkouts, holds, orders,
69 Only the total number is retrieved. In no case will private data be shared!
71 In order to know which parts of Koha modules are used, this script will collect some system preference values.
73 If you want to tell us who you are, you can fill the UsageStatsLibraryName system preference with your library name, UsageStatsLibraryUrl, UsageStatsLibraryType and/or UsageStatsCountry, UsageStatsLibrariesInfo.
75 All these data will be analyzed on the http://hea.koha-community.org Koha community website.
77 IMPORTANT : please do NOT run the cron on the 1st, but on another day. The idea is to avoid all
78 Koha libraries sending their data at the same time ! So choose any day between 1 and 28 !
86 Print a brief help message
98 Do not emit "The UsageStats system preference is not set" message
104 Alex Arnaud <alex.arnaud@biblibre.com>
106 Jonathan Druart <jonathan.druart@biblibre.com>
110 Copyright 2014 BibLibre
114 This file is part of Koha.
116 Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
117 Foundation; either version 3 of the License, or (at your option) any later version.
119 You should have received a copy of the GNU General Public License along
120 with Koha; if not, write to the Free Software Foundation, Inc.,
121 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.