CallBackery
view release on metacpan or search on metacpan
lib/CallBackery.pm view on Meta::CPAN
use Mojolicious::Plugin::Qooxdoo;
use Mojo::URL;
use Mojo::JSON;
use Mojo::Util qw(hmac_sha1_sum);
use Mojo::File qw(path);
use File::Basename;
use CallBackery::Config;
use CallBackery::Plugin::Doc;
use CallBackery::Database;
use CallBackery::User;
use Scalar::Util qw(weaken);
our $VERSION = '0.53.1';
=head2 config
A hash pointer to the configuration object. See L<CallBackery::Config> for details.
The default configuration file is located in etc/callbackery.cfg. You can override the
path by setting the C<CALLBACKERY_CONF> environment variable.
The config property is set automatically on startup.
lib/CallBackery.pm view on Meta::CPAN
Mojolicious calls the startup method at initialization time.
=cut
sub startup {
my $app = shift;
# having a non-C locale for number will wreck all sorts of havoc
# when things get converted to string and back
setlocale(LC_NUMERIC, "C");
setlocale(LC_TIME, "C");
weaken($app);
$app->config->postProcessCfg();
my $gcfg = $app->config->cfgHash->{BACKEND};
if ($gcfg->{log_file}){
if (open my $file, '>>', $gcfg->{log_file}){
$app->log->handle($file);
}
else {
$app->log->debug("Opening $gcfg->{log_file}: $!");
}
}
lib/CallBackery/Controller/RpcService.pm view on Meta::CPAN
package CallBackery::Controller::RpcService;
use Mojo::Base qw(Mojolicious::Plugin::Qooxdoo::JsonRpcController),
-signatures,-async_await;
use CallBackery::Exception qw(mkerror);
use CallBackery::Translate qw(trm);
use Mojo::JSON qw(encode_json decode_json from_json);
use Syntax::Keyword::Try;
use Scalar::Util qw(blessed weaken);
=head1 NAME
CallBackery::RpcService - RPC services for CallBackery
=head1 SYNOPSIS
This module gets instantiated by L<CallBackery> and provides backend
functionality.
lib/CallBackery/GuiPlugin/Abstract.pm view on Meta::CPAN
use Mojo::Template;
use Mojo::Util qw(monkey_patch);
use CallBackery::Exception qw(mkerror);
use autodie;
use Scalar::Util 'blessed';
use IPC::Open3;
use POSIX qw<F_SETFD F_GETFD FD_CLOEXEC>;
use Time::HiRes qw(usleep);
use Mojo::JSON qw(encode_json decode_json true false);
use Mojo::File;
use Scalar::Util 'weaken';
# disable warnings below, otherwise testing will give warnings
eval { local $^W=0; require "sys/ioctl.ph" };
=head1 NAME
CallBackery::GuiPlugin::Abstract - GuiPlugin base class
=head1 SYNOPSIS
use Mojo::Base 'CallBackery::GuiPlugin::Abstract';
lib/CallBackery/GuiPlugin/Abstract.pm view on Meta::CPAN
slurp => sub {
my $filename = shift;
return Mojo::File->new($filename)->slurp;
};
monkey_patch $mt->namespace,
cfgHash => sub { $self->cfgHash };
monkey_patch $mt->namespace,
pluginCfg => sub { my $instance = shift;
my $cfg = $self->cfgHash->{PLUGIN}{prototype}{$instance}->config;
weaken $cfg;
return $cfg;
};
return $mt;
};
has homeDir => sub {
[getpwuid $>]->[7];
};
( run in 0.764 second using v1.01-cache-2.11-cpan-65fba6d93b7 )