shell bypass 403
package ColorThemeBase::Constructor;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2020-06-19'; # DATE
our $DIST = 'ColorThemeBase-Static'; # DIST
our $VERSION = '0.008'; # VERSION
use strict 'subs', 'vars';
#use warnings;
sub new {
my $class = shift;
# check that %THEME exists
my $theme_hash = \%{"$class\::THEME"};
unless (defined $theme_hash->{v}) {
die "Class $class does not define \%THEME with 'v' key";
}
unless ($theme_hash->{v} == 2) {
die "\%$class\::THEME's v is $theme_hash->{v}, I only support v=2";
}
# check for known and required arguments
my %args = @_;
{
my $args_spec = $theme_hash->{args};
last unless $args_spec;
for my $arg_name (keys %args) {
die "Unknown argument '$arg_name'" unless $args_spec->{$arg_name};
}
for my $arg_name (keys %$args_spec) {
die "Missing required argument '$arg_name'"
if $args_spec->{$arg_name}{req} && !exists($args{$arg_name});
# apply default
$args{$arg_name} = $args_spec->{$arg_name}{default}
if !defined($args{$arg_name}) &&
exists $args_spec->{$arg_name}{default};
}
}
bless {
args => \%args,
# we store this because applying roles to object will rebless the object
# into some other package.
orig_class => $class,
}, $class;
}
1;
# ABSTRACT: Provide new()
__END__
=pod
=encoding UTF-8
=head1 NAME
ColorThemeBase::Constructor - Provide new()
=head1 VERSION
This document describes version 0.008 of ColorThemeBase::Constructor (from Perl distribution ColorThemeBase-Static), released on 2020-06-19.
=head1 DESCRIPTION
=for Pod::Coverage ^(.+)$
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/ColorThemeBase-Static>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-ColorThemeBase-Static>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=ColorThemeBase-Static>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut