package Lemonldap::NG::Common::Apache::Session::Serialize::JSON; use strict; use JSON qw(to_json from_json); our $VERSION = '2.0.0'; sub serialize { my $session = shift; $session->{serialized} = to_json( $session->{data}, { allow_nonref => 1 } ); } sub unserialize { my $session = shift; my $data = _unserialize( $session->{serialized} ); die "Session could not be unserialized" unless defined $data; $session->{data} = $data; } sub unserializeBase64 { my $session = shift; my $data = _unserialize( $session->{serialized}, \&decodeThaw64 ); die "Session could not be unserialized" unless defined $data; $session->{data} = $data; } sub decodeThaw64 { require MIME::Base64; my $s = shift; return Storable::thaw( MIME::Base64::decode_base64($s) ); } sub _unserialize { my ( $serialized, $next ) = @_; my $tmp; eval { $tmp = from_json( $serialized, { allow_nonref => 1 } ) }; if ($@) { require Storable; $next ||= \&Storable::thaw; return &$next($serialized); } return $tmp; } 1; =pod =head1 NAME =encoding utf8 Lemonldap::NG::Common::Apache::Session::Serialize::JSON - Use JSON to zip up data =head1 SYNOPSIS use Lemonldap::NG::Common::Apache::Session::Serialize::JSON; $zipped = Lemonldap::NG::Common::Apache::Session::Serialize::JSON::serialize($ref); $ref = Lemonldap::NG::Common::Apache::Session::Serialize::JSON::unserialize($zipped); =head1 DESCRIPTION This module fulfills the serialization interface of Apache::Session. It serializes the data in the session object by use of JSON C and C. The serialized data is UTF-8 text. =head1 SEE ALSO L, L =head1 AUTHORS =over =item Clement Oudot, Eclem.oudot@gmail.comE =item François-Xavier Deltombe, Efxdeltombe@gmail.com.E =item Xavier Guimard, Ex.guimard@free.frE =item Thomas Chemineau, Ethomas.chemineau@gmail.comE =back =head1 BUG REPORT Use OW2 system to report bug or ask for features: L =head1 DOWNLOAD Lemonldap::NG is available at L =head1 COPYRIGHT AND LICENSE =over =item Copyright (C) 2015-2016 by Clément Oudot, Eclem.oudot@gmail.comE =item Copyright (C) 2015-2016 by Xavier Guimard, Ex.guimard@free.frE =back This library 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 Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see L. =cut