Moxy::Plugin::QRCode - QRCode generator for Moxy


Moxy documentation Contained in the Moxy distribution.

Index


Code Index:

NAME

Top

Moxy::Plugin::QRCode - QRCode generator for Moxy

SYNOPSIS

Top

    - module: QRCode
      engine: Imager

    - module: QRCode
      engine: GD

DESCRIPTION

Top

QRCode generator for Moxy.

DEPENDENCY

Top

This module uses GD::Barcode::QRcode.

AUTHORS

Top

Kan Fushihara

Tokuhiro Matsuno

Daisuke Murase

SEE ALSO

Top

Moxy, GD::Barcode::QRcode


Moxy documentation Contained in the Moxy distribution.

package Moxy::Plugin::QRCode;
use strict;
use warnings;
use base qw/Moxy::Plugin/;
use URI::Escape;

sub control_panel :Hook {
    my ($self, $context, $args) = @_;

    return $self->render_template(
        $context,
        'panel.tt' => {
            current => $args->{response}->request->uri,
        }
    );
}

sub url_handle :Hook {
    my ($self, $context, $args) = @_;

    if ($args->{request}->uri =~ m{^http://qrcode\.moxy/(.+)}) {
        my $url = uri_unescape($1);

        my $engine = $self->config->{config}->{engine} || 'GD';
        my $qrcode = _generate_qr($url, $engine);

        my $response = HTTP::Response->new( 200, 'Moxy QRcode ok' );
        $response->header('Content-Type' => 'image/png');
        $response->content($qrcode);
        $response;
    }
}

sub _generate_qr {
    my ($url, $engine) = @_;

    if ($engine =~ /Imager/i) {
        require Imager::QRCode;
        my $qrcode = Imager::QRCode->new(
            level => 'M',
            casesensitive => 1,
        );

        my $image = $qrcode->plot($url);
        $image->write( data => \my $data, type => 'png' );
        return $data;
    } elsif ($engine =~ /^GD$/i) {
        require GD::Barcode;
        require GD::Barcode::QRcode;
        return GD::Barcode::QRcode->new( $url,
            { Ecc => 'M', ModuleSize => 5, Version => 8 } )
            ->plot->png;
    } elsif ($engine =~ /^Google$/i) {
        require Google::Chart;
        my $chart = Google::Chart->new(
            type => {
                module => "QRcode",
                args   => {
                    text => $url,
                }
            }
        );
        return $chart->render;
    } else {
        die "unknown qrcode engine type: $engine";
    }
}

1;
__END__