Mojo-Darkpan/lib/Mojo/Darkpan.pm
package Mojo::Darkpan;
use v5.20;
use Data::Dumper;
use FindBin;
use Mojo::Base 'Mojolicious', -signatures;
use Mojo::Darkpan::Config;
sub startup ($self) {
# https://metacpan.org/pod/Mojolicious::Plugin::BasicAuthPlus
$self->plugin('basic_auth_plus');
$self->plugin( 'DirectoryHandler',
delivery_path => Mojo::Darkpan::Config->new->path );
#----------
# Router
#----------
my $r = $self->routes;
my $index = $r->any('/');
$index->get('/list')->to( controller => 'index', action => 'list' );
$index->get('/reindex')->to( controller => 'index', action => 'reindex' );
my $uploader = $r->any('/publish');
$uploader->post('/')->to( controller => 'publish', action => 'upload' );
# goes to the same place as publish, used for compatibility
my $authenquery = $r->any('/authenquery');
$authenquery->post('/')->to( controller => 'publish', action => 'upload' );
}
our $VERSION = "0.09";
1;
__END__
=encoding utf-8
=head1 NAME
Mojo::Darkpan - A Mojolicious web service frontend leveraging OrePAN2
=head1 DESCRIPTION
Mojo::Darkpan is a webservice build on Mojolicious to frontend L<OrePAN2|https://metacpan.org/pod/OrePAN2>. This module was inspired
by L<OrePAN2::Server|https://metacpan.org/pod/OrePAN2::Server'> but built on
Mojolicious to take advantage of it's robust framework of tools. A good bit of the documentation
was also taken from OrePAN2::Server as the functionality is similar if not identical.
=head1 SYNOPSIS
=head2 Running the server
# start a server with default configurations on port 8080
darkpan --port 8080
# start a server with AD backed basic auth
# config.json
{
"basic_auth": {
"Realm Name": {
"host": "ldaps://my.ldap.server.org",
"port": 636,
"basedn": "DC=my,DC=compoany,DC=org",
"binddn": "bind_name",
"bindpw": "bond_pw",
"filter": "(&(objectCategory=*)(sAMAccountName=%s)(|(objectClass=user)(objectClass=group)))"
}
}
}
darkpan --config ./config.json
=head4 Options:
=over 2
=item B<-c,--config> I<default: undef>:
JSON configuration file location
=item B<-p,--port> I<default: 3000>:
Web application port
=back
=head4 Paths:
=over 2
=item B</publish> or B</authenquery>:
POST path(s) for releasing packages, set as the upload_uri in your .pause file
=item B</list>:
JSON list of packages and info about them
=item B</reindex>:
Force OrePAN2 to do a index all modules and recreate the 02packages.details file.
=item B</darkpan> I<(may differ if you set a custom path)>:
Directory listing of the repository. This is the path to reference as your mirror or
set the PERL_CARTON_MIRROR env var
=back
=head2 Configuring the server
Configurations can be done using environment variables or by creating a json config file.
=head3 environment variables
Environment variables are at a higher order than values set in the json configuration
file and will take precedence if set. The B<DARKPAN_CONFIG_FILE> env variable can be
set instead of using the command line option to denote the path of the config file.
=over 2
=item B<DARKPAN_CONFIG_FILE>:
Location of a json configuration file, same as passing the --config option
=item B<DARKPAN_DIRECTORY>:
Directory where uploads will be stored.
=item B<DARKPAN_PATH>:
URL path to function as cpan repository resolver/mirror endpoint.
=item B<DARKPAN_COMPRESS_INDEX>:
Setting whether to compress (gzip) the 02packages.details.txt file.
=item B<DARKPAN_AUTH_REALM>:
Basic auth realm name. This variable needs to be set to enable parsing of additional
auth settings using the following the format DARKPAN_AUTH_[setting].
=item B<DARKPAN_AUTH_[setting]>:
Additional basic auth settings can be passed using this format. The settings
will be parsed and applied to your basic auth configurations. See
L<Mojolicious::Plugin::BasicAuthPlus|https://metacpan.org/pod/Mojolicious::Plugin::BasicAuthPlus>
for additional details on configurations.
=back
=head3 config.json
The config.json file contains customizations for the darkpan web application. It can be
referenced by absolute path or relative to where the application is run from.
{
"directory": "darkpan",
"compress_index": true,
"path": "darkpan",
"basic_auth": {
"Realm Name": {
"host": "ldaps://my.ldap.server.org",
"port": 636,
"basedn": "DC=my,DC=compoany,DC=org",
"binddn": "bind_name",
"bindpw": "bond_pw",
"filter": "(&(objectCategory=*)(sAMAccountName=%s)(|(objectClass=user)(objectClass=group)))"
}
}
}
=head4 config.json options
=over 2
=item B<directory> I<default: darkpan>:
Directory where uploads will be stored.
=item B<path> I<default: darkpan>:
URL path to function as cpan repository resolver/mirror endpoint.
=item B<compress_index> I<default: true>:
Setting whether to compress (gzip) the 02packages.details.txt file.
=item B<basic_auth> I<default: undef>:
Basic authentication settings, see configurations for L<Mojolicious::Plugin::BasicAuthPlus|https://metacpan.org/pod/Mojolicious::Plugin::BasicAuthPlus>. When not provided
no authentication is necessary to post modules to the service.
=back
=head3 Authentication
Authentication is handled by L<Mojolicious::Plugin::BasicAuthPlus|https://metacpan.org/pod/Mojolicious::Plugin::BasicAuthPlus>.
To configure basic auth, see the configuration options for L<Mojolicious::Plugin::BasicAuthPlus|https://metacpan.org/pod/Mojolicious::Plugin::BasicAuthPlus>
and add your settings to the basic auth section of the config.json file.
=head2 How to Publish
=head3 Publishing with POST
Publishing to darkpan can be done using a post request and a URL to git or bitbucket repo.
#upload git managed module to my darkpan by curl
curl --data-urlencode 'module=git+ssh://git@mygit/home/git/repos/MyModule.git' --data-urlencode 'author=reshingleton' http://localhost:3000/publish
curl --data-urlencode 'module=git+file:///home/rshingleton/project/MyModule.git' --data-urlencode 'author=reshingleton' http://localhost:3000/publish
curl --data-urlencode 'module=git@github.com:rshingleton/perl-module-test.git' --data-urlencode 'author=reshingleton' http://localhost:3000/publish
Publishing with a local file
#upload file from disk via curl
curl -F 'pause99_add_uri_httpupload=@filename.tar.gz' http://localhost:3000/publish
The module parameter can also be an HTTP url. see L<OrePAN2::Injector|https://metacpan.org/pod/OrePAN2::Injector> for
additional details.
curl --data-urlencode 'module=https://cpan.metacpan.org/authors/id/O/OA/OALDERS/OrePAN2-0.48.tar.gz' --data-urlencode 'author=OALDERS' http://localhost:3000/publish
=head3 Publishing with L<Minilla|https://metacpan.org/pod/Minilla>
Minilla is a cpan authoring tool, see L<Minilla|https://metacpan.org/pod/Minilla> for more details.
=head4 minil.toml
Add a reference to a pause configruation file in your minil.toml that points to your darkpan instance.
The configuration can reference a relative path as follows:
[release]
pause_config=".pause"
=head4 .pause file
The .pause file is a configuration file for uploading modules to CPAN or your own Darkpan Repository.
See L<CPAN::Uploader|https://metacpan.org/pod/CPAN::Uploader> for more detail.
upload_uri http://my-darkpan.server/publish
user myUsername
password myPassword
I<** if you don't set the upload_uri, you will upload to CPAN>
If basic auth is enabled, the username and password set in the .pause file will be
used as basic auth credentials.
=head2 How to install from your Darkpan
=head3 cpanm
See L<cpanm|https://metacpan.org/pod/cpanm> for additional details.
# check CPAN and your Darkpan server
cpanm --mirror http://my-darkpan.server/darkpan
# check for packages from only your Darkpan server
cpanm --mirror-only http://my-darkpan.server/darkpan
cpanm --from http://my-darkpan.server/darkpan
=head3 cpm
See L<cpm|https://metacpan.org/dist/App-cpm/view/script/cpm> for additional details.
# resolve distribution names from DARKPAN/modules/02packages.details.txt.gz
# and fetch distibutions from DARKPAN/authors/id/...
> cpm install --resolver 02packages,http://example.com/darkpan Your::Module
# use darkpan first, and if it fails, use metadb and normal CPAN
> cpm install --resolver 02packages,http://my-darkpan.server/darkpan --resolver metadb Your::Module
=head3 carton
See L<carton|https://metacpan.org/pod/Carton> for additional details.
# in the cpanfile
# local mirror (darkpan)
requires 'Plack', '== 0.9981',
dist => 'MYCOMPANY/Plack-0.9981-p1.tar.gz',
mirror => 'http://my-darkpan.server/darkpan';
Carton also uses an (L<undocumented|https://domm.plix.at/perl/2017_07_carton_darkpan.html>) environment variable PERL_CARTON_MIRROR that will enable you
to add your Darkpan server to its list of resolvers. Carton will install from
your Darkpan and from the default CPAN mirror.
PERL_CARTON_MIRROR=http://my-darkpan.server/darkpan carton install
=head1 SEE ALSO
L<OrePAN2|https://metacpan.org/pod/OrePAN2>
L<OrePAN2::Server|https://metacpan.org/pod/OrePAN2::Server>
=head1 LICENSE
Copyright (C) rshingleton.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
rshingleton E<lt>reshingleton@gmail.comE<gt>
=cut