App-Dochazka-REST
view release on metacpan or search on metacpan
lib/App/Dochazka/REST.pm view on Meta::CPAN
=cut
sub init_arbitrary_script {
my ( $ARGS ) = @_;
my $quiet = 0;
if ( ref( $ARGS ) eq 'HASH' and exists( $ARGS->{quiet} ) ) {
$quiet = $ARGS->{quiet};
}
my $app_distro = 'App-Dochazka-REST';
my $sitedir = '/etc/dochazka-rest';
print "Loading configuration parameters from $sitedir\n" unless $quiet;
my $status = Web::MREST::init(
distro => $app_distro,
sitedir => $sitedir,
);
die $status->text unless $status->ok;
print "Setting up logging\n" unless $quiet;
my $log_file = normalize_filespec( $site->MREST_LOG_FILE );
my $should_reset = $site->MREST_LOG_FILE_RESET;
unlink $log_file if $should_reset;
Log::Any::Adapter->set( 'File', $log_file );
my $message = "Logging to $log_file";
print "$message\n" unless $quiet;
$log->info( $message );
if ( ! $site->MREST_APPNAME ) {
die "Site parameter MREST_APPNAME is undefined - please investigate!";
}
$log->init(
ident => $site->MREST_APPNAME,
debug_mode => ( $site->MREST_DEBUG_MODE || 0 ),
);
print "Connecting to database\n" unless $quiet;
App::Dochazka::REST::ConnBank::init_singleton();
print "Database is " . conn_status() . "\n" unless $quiet;
$faux_context = { 'dbix_conn' => $dbix_conn, 'current' => { 'eid' => 1 } };
}
=head1 GLOSSARY OF TERMS
In Dochazka, some commonly-used terms have special meanings:
=over
=item * B<employee> --
Regardless of whether they are employees in reality, for the
purposes of Dochazka employees are the folks whose attendance/time is being
tracked. Employees are expected to interact with Dochazka using the
following functions and commands.
=item * B<administrator> --
In Dochazka, administrators are employees with special powers. Certain
REST/CLI functions are available only to administrators.
=item * B<CLI client> --
CLI stands for Command-Line Interface. The CLI client is the Perl script
that is run when an employee types C<dochazka> at the bash prompt.
=item * B<REST server> --
REST stands for ... . The REST server is a collection of Perl modules
running on a server at the site.
=item * B<site> --
In a general sense, the "site" is the company, organization, or place that
has implemented (installed, configured) Dochazka for attendance/time
tracking. In a technical sense, a site is a specific instance of the
Dochazka REST server that CLI clients connect to.
=back
=head1 AUTHOR
Nathan Cutler, C<< <ncutler@suse.cz> >>
=head1 BUGS
To report bugs or request features, use the GitHub issue tracker at
L<https://github.com/smithfarm/dochazka-rest/issues>.
=head1 SUPPORT
The full documentation comes with the distro, and can be comfortably
perused at metacpan.org:
https://metacpan.org/pod/App::Dochazka::REST
You can also read the documentation for individual modules using the
perldoc command, e.g.:
perldoc App::Dochazka::REST
perldoc App::Dochazka::REST::Model::Activity
Other resources:
=over 4
=item * GitHub issue tracker (report bugs here)
L<https://github.com/smithfarm/dochazka-rest>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/App-Dochazka-REST>
=back
( run in 0.657 second using v1.01-cache-2.11-cpan-6aa56a78535 )