You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.1 KiB
114 lines
3.1 KiB
package Lemonldap::NG::Common::Notifications::JSON;
|
|
|
|
use strict;
|
|
use Mouse;
|
|
use JSON qw(from_json to_json);
|
|
|
|
our $VERSION = '2.0.8';
|
|
|
|
sub newNotification {
|
|
my ( $self, $jsonString, $defaultCond ) = @_;
|
|
my $json;
|
|
$defaultCond ||= '';
|
|
eval { $json = from_json( $jsonString, { allow_nonref => 1 } ) };
|
|
if ( my $err = $@ ) {
|
|
eval { $self->logger->error("Unable to decode JSON file: $err") };
|
|
return 0;
|
|
}
|
|
|
|
my @notifs;
|
|
$json = [$json] unless ( ref($json) eq 'ARRAY' );
|
|
|
|
foreach my $notif (@$json) {
|
|
my @data;
|
|
$notif->{reference} =~ s/_/-/g; # Remove underscores (#2135)
|
|
|
|
# Mandatory information
|
|
foreach (qw(date uid reference)) {
|
|
my $tmp;
|
|
unless ( $tmp = $notif->{$_} ) {
|
|
my $err = "Attribute $_ is missing";
|
|
$self->logger->error("$err");
|
|
return ( 0, "$err" );
|
|
}
|
|
if ( $self->get( $notif->{uid}, $notif->{reference} ) ) {
|
|
my $err = "A notification already exists with reference "
|
|
. $notif->{reference};
|
|
$self->logger->error("$err");
|
|
return ( 0, "$err" );
|
|
}
|
|
|
|
# Prevent to store time. Keep date only
|
|
$tmp =~ s/^(\d{4}-\d{2}-\d{2}).*$/$1/;
|
|
push @data, $tmp;
|
|
}
|
|
|
|
unless ( exists $notif->{condition} ) {
|
|
$self->userLogger->info(
|
|
"Set defaultCondition ($defaultCond) for notification $notif->{reference}"
|
|
);
|
|
$notif->{condition} = $defaultCond;
|
|
}
|
|
|
|
push @data, ( $notif->{condition} );
|
|
$notif->{date} =~ s/^(\d{4}-\d{2}-\d{2}).*$/$1/;
|
|
my $body = to_json($notif);
|
|
push @notifs, [ @data, $body ];
|
|
}
|
|
my $count;
|
|
foreach (@notifs) {
|
|
$count++;
|
|
my ( $r, $err ) = $self->newNotif(@$_);
|
|
die "$err" unless ($r);
|
|
}
|
|
return $count;
|
|
}
|
|
|
|
sub deleteNotification {
|
|
my ( $self, $uid, $myref ) = @_;
|
|
my @data;
|
|
|
|
# Check input parameters
|
|
unless ( $uid and $myref ) {
|
|
$self->userLogger->error(
|
|
'REST service "delete notification" called without all parameters');
|
|
return 0;
|
|
}
|
|
$self->logger->debug(
|
|
"REST service deleteNotification called for uid $uid and reference $myref"
|
|
);
|
|
|
|
# Get notifications
|
|
my $user = $self->get($uid);
|
|
|
|
# Return 0 if no files were found
|
|
return 0 unless ($user);
|
|
|
|
# Counting
|
|
my $count = 0;
|
|
|
|
foreach my $ref ( keys %$user ) {
|
|
my $json = from_json( $user->{$ref}, { allow_nonref => 1 } );
|
|
$json = [$json] unless ( ref($json) eq 'ARRAY' );
|
|
|
|
# Browse notification in file
|
|
foreach my $notif (@$json) {
|
|
|
|
# Get notification's data
|
|
if ( $notif->{reference} eq $myref ) {
|
|
push @data, $ref;
|
|
}
|
|
|
|
# Delete the notification (really)
|
|
foreach (@data) {
|
|
if ( $self->purge( $_, 1 ) ) {
|
|
$self->logger->debug("Notification $_ was removed.");
|
|
$count++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $count;
|
|
}
|
|
|
|
1;
|
|
|