Apache2-PageKit
view release on metacpan or search on metacpan
lib/Apache2/PageKit/Model.pm view on Meta::CPAN
my $obj = tied(%{$model->{pkit_pk}->{session}});
return $obj ? $obj->getid : undef;
}
sub pkit_get_page_session_id {
my $model = shift;
my $page_session = $model->{pkit_pk}->{page_session};
return tied(%$page_session)->getid if $page_session;
}
# returns value of PerlSetVar PKIT_SERVER from httpd.conf
sub pkit_get_server_id {
my $model = shift;
my $apr = $model->{pkit_pk}->{apr};
return $apr->dir_config('PKIT_SERVER') if $apr;
}
sub pkit_root {
my $model = shift;
my $apr = $model->{pkit_pk}->{apr};
return $apr->dir_config('PKIT_ROOT') if $apr;
}
sub pkit_get_orig_uri {
my $model = shift;
return $model->{pkit_pk}->{apr}->notes->get('orig_uri');
}
sub pkit_get_page_id {
my $model = shift;
return $model->{pkit_pk}->{page_id};
}
sub pkit_lang {
my $model = shift;
return $model->{pkit_pk}->{lang};
}
sub pkit_user {
my $model = shift;
return $model->{pkit_pk}->{apr}->user;
}
sub pkit_set_errorfont {
my ( $model, $field, $color_str) = @_;
$color_str ||= $model->pkit_get_config_attr( GLOBAL => 'default_errorstr' ) || "#ff0000";
my $begin_name = "PKIT_ERRORSPAN_BEGIN_$field";
my $begin_value = $model->pkit_get_config_attr( GLOBAL => 'errorspan_begin_tag' ) || qq{<font color="$color_str">};
$begin_value =~ s/<(!--)?\s*PKIT_ERRORSTR\s*(?(1)--)>/$color_str/gi;
my $end_name = "PKIT_ERRORSPAN_END_$field";
my $end_value = $model->pkit_get_config_attr( GLOBAL => 'errorspan_end_tag' ) || q{</font>};
$model->output($begin_name => $begin_value);
$model->output($end_name => $end_value);
}
# for now both are the same this may change.
# but only pkit_set_errorspan should change.
*pkit_set_errorspan = \&pkit_set_errorfont;
sub pkit_validate_input {
my ($model, $input_profile) = @_;
my $messages = delete $input_profile->{messages};
my $validator = Data::FormValidator->new({default => $input_profile});
# put the data from input into a %fdat hash so Data::FormValidator can read it
my $input_hashref = $model->pkit_input_hashref;
# put derived Model object in pkit_model
# so form validation can access $dbh, etc
# this is used, for example, to see if a login already exists
$input_hashref->{'pkit_model'} = $model;
my ($valids, $missings, $invalids, $unknowns) = $validator->validate($input_hashref, 'default');
# put our messages back into the hash...
$input_profile->{messages} = $messages if defined $messages;
# used to change apply changes from filter to apr
while (my ($key, $value) = each %$valids){
# if multiple request param, don't set, since formvalidator doesn't deal
# with them yet
$model->input($key,$value) unless ref($input_hashref->{$key}) eq 'ARRAY';
}
# used to change undef values to "", in case db field is defined as NOT NULL
for my $field (keys %$input_hashref){
$valids->{$field} ||= "";
}
for my $field (@$missings, @$invalids){
$model->pkit_set_errorspan($field);
}
if(@$invalids || @$missings){
if(@$invalids){
foreach my $field (@$invalids){
next unless exists $messages->{$field};
my $value = $input_hashref->{$field};
# gets error message for that field which was filled in incorrectly
my $msg = $messages->{$field};
$msg = $model->pkit_gettext($msg);
# substitutes the value the user entered in the error message
$msg =~ s/\%\%VALUE\%\%/$value/g;
$model->pkit_message($msg, is_error => 1);
}
$model->pkit_gettext_message('Please try again.', is_error => 1);
} else {
# no invalid data, just missing fields
$model->pkit_gettext_message(qq{You did not fill out all the required fields. Please fill the <font color="<PKIT_ERRORSTR>">red</font> fields.});
}
return;
}
if ($valids){
return 1;
}
}
sub pkit_component_params_hashref {
return $_[0]->{pkit_pk}->{component_params_hashref};
}
sub pkit_input_hashref {
my $model = shift;
return $model->{pkit_input_hashref} if
exists $model->{pkit_input_hashref};
my $input_hashref = {};
for my $key ($model->input){
# we expect param to return an array if there are multiple values
my @v = $model->input($key);
$input_hashref->{$key} = scalar(@v)>1 ? \@v : $v[0];
}
$model->{pkit_input_hashref} = $input_hashref;
lib/Apache2/PageKit/Model.pm view on Meta::CPAN
# helper function for output_convert
# it converts all hash values to the desired charset INPLACE
# is this a good idea or better clone it?
sub _change_params {
sub _change_array {
my ($charset, $aref) = @_;
foreach (@$aref) {
my $type = ref $_;
if ( $type eq 'HASH' ) {
_change_hash( $charset, $_ );
} elsif ( $type eq 'ARRAY' ) {
_change_array( $charset, $_ );
} else {
$_ = Encode::decode($charset, $_);
}
}
}
sub _change_hash {
my ($charset, $href) = @_;
foreach ( values %$href ) {
my $type = ref $_;
if ( $type eq 'HASH' ) {
_change_hash( $charset, $_ );
} elsif ( $type eq 'ARRAY' ) {
_change_array( $charset, $_ );
} else {
$_ = Encode::decode($charset, $_);
}
}
}
my $charset = shift;
for ( my $i = 1 ; $i <= $#_ ; $i += 2 ) {
my $type = ref $_[$i];
if ( $type eq 'HASH' ) {
_change_hash( $charset, $_[$i] );
} elsif ( $type eq 'ARRAY' ) {
_change_array( $charset, $_[$i] );
} else {
$_[$i] = Encode::decode($charset, $_[$i]);
}
}
}
1;
__END__
=head1 NAME
Apache2::PageKit::Model - Base Model Class
=head1 DESCRIPTION
This class provides a base class for the Modules implementing
the backend business logic for your web site.
This module also contains a wrapper to L<Data::FormValidator>.
It validates the form data from the L<Apache2::Request> object contained
in the L<Apache2::PageKit> object.
When deriving classes from Apache2::PageKit::Model, keep in mind that
all methods and hash keys that begin with pkit_ are reserved for
future use.
=head1 SYNOPSIS
Method in derived class.
sub my_method {
my $model = shift;
# get database handle, session
my $dbh = $model->dbh;
my $session = $model->session;
# get inputs (from request parameters)
my $foo = $model->input('bar');
# do some processing
...
# set outputs in template
$model->output(result => $result);
}
=head1 AUTHORS
T.J. Mather (tjmather@anidea.com)
Boris Zentner (borisz@users.sourceforge.net)
=head1 COPYRIGHT
Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005 AnIdea Corporation. All rights Reserved. PageKit is
a trademark of AnIdea Corporation.
=head1 LICENSE
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 Ricoh Source Code Public License for more details.
You can redistribute this module and/or modify it only under the terms of the Ricoh Source Code Public License.
You should have received a copy of the Ricoh Source Code Public License along with this program; if not, obtain one at http://www.pagekit.org/license
=cut
( run in 0.664 second using v1.01-cache-2.11-cpan-39bf76dae61 )