File Coverage

blib/lib/Mojolicious/Plugin/Notifications/Alertify.pm
Criterion Covered Total %
statement 87 87 100.0
branch 21 22 95.4
condition 22 29 75.8
subroutine 14 14 100.0
pod 3 3 100.0
total 147 155 94.8


line stmt bran cond sub pod time code
1             package Mojolicious::Plugin::Notifications::Alertify;
2 3     3   2678 use Mojo::Base 'Mojolicious::Plugin::Notifications::Engine';
  3         14  
  3         21  
3 3     3   1244 use Mojolicious::Plugin::Notifications::HTML qw/notify_html/;
  3         7  
  3         153  
4 3     3   17 use Exporter 'import';
  3         7  
  3         89  
5 3     3   19 use Mojo::ByteStream 'b';
  3         5  
  3         114  
6 3     3   17 use Mojo::Util qw/xml_escape quote/;
  3         6  
  3         130  
7 3     3   17 use Mojo::JSON qw/decode_json encode_json/;
  3         5  
  3         155  
8 3     3   18 use Scalar::Util qw/blessed/;
  3         7  
  3         127  
9 3     3   16 use File::Spec;
  3         20  
  3         83  
10 3     3   18 use File::Basename;
  3         6  
  3         335  
11              
12             our @EXPORT_OK = ('notify_alertify');
13              
14             has [qw/base_class base_timeout/];
15             state $path = '/alertify/';
16              
17 3     3   23 use constant DEFAULT_TIMEOUT => 5000;
  3         6  
  3         3080  
18              
19             # Register plugin
20             sub register {
21 3     3 1 9 my ($plugin, $app, $param) = @_;
22              
23             # Set config
24 3   100     22 $plugin->base_class( $param->{base_class} // 'default' );
25 3   50     47 $plugin->base_timeout( $param->{base_timeout} // DEFAULT_TIMEOUT );
26              
27 3         33 $plugin->scripts($path . 'alertify.min.js');
28 3         17 $plugin->styles(
29             $path . 'alertify.core.css',
30             $path . 'alertify.' . $plugin->base_class . '.css'
31             );
32              
33             # Add static path to JavaScript
34 3         8 push @{$app->static->paths},
  3         23  
35             File::Spec->catdir( File::Basename::dirname(__FILE__), 'Alertify' );
36             };
37              
38              
39             # Exportable function
40             sub notify_alertify {
41 17 100 66 17 1 652 my $c = shift if blessed $_[0] && $_[0]->isa('Mojolicious::Controller');
42 17         32 my $type = shift;
43 17         28 my $param = shift;
44 17         30 my $msg = pop;
45              
46             state $ajax = sub {
47 8     8   547 return 'r.open("POST",' . quote($_[0]) . ');v=true';
48 17         30 };
49              
50 17         28 my $js = '';
51              
52             # Confirmation
53 17 100 100     68 if ($param->{ok} || $param->{cancel}) {
54              
55 5 100       44 $js .= 'var x=' . quote($c->csrf_token) . ';' if $c;
56              
57             # Set labels
58 5 100 66     185 if ($param->{ok_label} || $param->{cancel_label}) {
59 1         5 $js .= 'alertify.set({labels:{';
60 1   50     5 $js .= 'ok:'.quote($param->{ok_label} // 'OK') . ',' ;
61 1   50     12 $js .= 'cancel:'.quote($param->{cancel_label} // 'Cancel');
62 1         7 $js .= "}});\n";
63             };
64              
65             # Create confirmation
66 5         18 $js .= 'alertify.confirm(' . quote($msg);
67 5         63 $js .= ',function(ok){';
68 5         11 $js .= 'var r=new XMLHttpRequest();var v;';
69              
70 5 100 100     21 if ($param->{ok} && $param->{cancel}) {
    100          
71             $js .= 'if(ok){'. $ajax->($param->{ok}) .
72 3         36 '}else{' . $ajax->($param->{cancel}) . '};';
73             }
74             elsif ($param->{ok}) {
75 1         13 $js .= 'if(ok){' . $ajax->($param->{ok}) . '};';
76             }
77             else {
78 1         5 $js .= 'if(!ok){' . $ajax->($param->{cancel}) . '};';
79             };
80 5         1057 $js .= 'if(v){';
81 5         13 $js .= 'r.setRequestHeader("Content-type","application/x-www-form-urlencoded");';
82 5 100       23 $js .= 'r.send("csrf_token="+x);' if $c;
83              
84             # Alert if callback fails to respond
85 5         12 $js .= 'r.onreadystatechange=function(){' .
86             'if(this.readyState==4&&this.status!==200){' .
87             'alertify.log(this.status?this.status+": "+this.statusText:"Connection Error",'.
88             '"error")}}';
89              
90 5         18 $js .= '}},' . quote('notify notify-' . $type) . ");\n";
91             }
92              
93             # Normal alert
94             else {
95 12         35 $js .= 'alertify.log(' . quote($msg);
96 12         102 $js .= ',' . quote($type) . ',';
97 12         71 $js .= $param->{timeout};
98 12         17 $js .= ");\n";
99             };
100 17         84 return $js;
101             };
102              
103              
104             # Notification method
105             sub notifications {
106 9     9 1 29 my ($self, $c, $notify_array, $rule, @post) = @_;
107              
108 9 100       25 return unless $notify_array->size;
109              
110 8   66     72 my $theme = shift @post // $self->base_class;
111              
112 8         47 my $js = '';
113 8 100       38 unless ($rule->{no_include}) {
114 7         40 $js .= $c->javascript( $self->scripts );
115              
116 7 50       5238 unless ($rule->{no_css}) {
117 7         41 $js .= $c->stylesheet( ($self->styles)[0] );
118 7         4128 $js .= $c->stylesheet( $path . 'alertify.' . $theme . '.css');
119             };
120             };
121              
122             # Start JavaScript snippet
123 8         3951 $js .= qq{\n" . $noscript . '');
147             };
148              
149              
150             1;
151              
152              
153             __END__