App-SpreadRevolutionaryDate
view release on metacpan or search on metacpan
lib/App/SpreadRevolutionaryDate/Config.pm view on Meta::CPAN
$ENV{PERL_MM_USE_DEFAULT} = 1
}
}
return %msgmaker_args;
}
sub usage {
print << "USAGE";
Usage: $0 <OPTIONS>
with <OPTIONS>:
--conf|-c <file>: path to configuration file (default: ~/.config/spread-revolutionary-date/spread-revolutionary-date.conf or ~/.spread-revolutionary-date.conf)'
--version|-v': print out version
--help|-h|-?': print out this help
--targets|-tg <target_1> [--targets|-tg <target_2> [â¦--targets|-tg <target_n>]]': define targets (default: mastodon, bluesky, twitter, liberachat, freenode)
--msgmaker|-mm <MsgMakerClass>: define message maker (default: RevolutionaryDate)
--locale|-l <fr|en|it|es>: define locale (default: fr for msgmaker=RevolutionaryDate, en otherwise)
--test|--no|-n: do not spread, just print out message or spread to test channels for Freenode or Liberachat
--mastodon_instance|-mi <instance>: define Mastodon instance
--mastodon_client_id|-mci <id>: define Mastodon client id
--mastodon_client_secret|-mcs <secret>: define Mastodon client secret
--mastodon_access_token|-mat <token>: define Mastodon access token
--bluesky_identifier|-bi <key>: define Bluesky identifier
--bluesky_password|-bp <key>: define Bluesky password
--twitter_consumer_key|-tck <key>: define Twitter consumer key
--twitter_consumer_secret|-tcs <secret>: define Twitter consumer secret
--twitter_access_token|-tat <token>: define Twitter access token
--twitter_access_token_secret|tats <token_secret>: define Twitter access token secret
--liberachat_nickname|-ln <nick>: define Liberachat nickname
--liberachat_password|-lp <passwd>: define Liberachat password
--liberachat_test_channels|-ltc <channel_1> [--liberachat_test_channels|-ltc <channel_2> [â¦--liberachat_test_channels|-ltc <channel_n>]]: define Liberachat channels
--liberachat_channels|-lc <channel_1> [--liberachat_channels|-lc <channel_2> [â¦--liberachat_channels|-lc <channel_n>]]: define Liberachat test channels
--freenode_nickname|-fn <nick>: define Freenode nickname
--freenode_password|-fp <passwd>: define Freenode password
--freenode_test_channels|-ftc <channel_1> [--freenode_test_channels|-ftc <channel_2> [â¦--freenode_test_channels|-ftc <channel_n>]]: define Freenode channels
--freenode_channels|-fc <channel_1> [--freenode_channels|-fc <channel_2> [â¦--freenode_channels|-fc <channel_n>]]: define Freenode test channels
--revolutionarydate_acab | -ra: pretend it is 01:31:20 (default: false)
--promptuser_default|-pud <msg>: define default message when --msgmaker=PromptUser (default: 'Goodbye old world, hello revolutionary worlds')
--promptuser_img_path|-pui <path/to/image/file>: define image file path when --msgmaker=PromptUser
--promptuser_img_alt|-pua <alternative text>: define image alternative text when --msgmaker=PromptUser
--promptuser_img_url|-puu <https://example.com/imgs/my_image.jgp>: define image external url when --msgmaker=PromptUser
--gemini_api_key|-ga <msg>: define default message when --msgmaker=PromptUser (default: 'Goodbye old world, hello revolutionary worlds')
--gemini_process|-g <SomePrompt>: tell which prompt to process --msgmaker=Gemini
--gemini_prompt|-gp "<SomePrompt>=<my prompt string>": define prompt to request for when --msgmaker=Gemini
--gemini_intro|-gi "<SomePrompt>=<intro msg>": define introduction message to preprend to response when --msgmaker=Gemini
--gemini_search|-gs "<SomePrompt>=1": use grounding search results when --msgmaker=Gemini
--gemini_img_path|-gip "<SomePrompt>=<path/to/image/file>": define image file path when --msgmaker=Gemini
--gemini_img_alt|-gia "<SomePrompt>=<alternative text>": define image alternative text when --msgmaker=Gemini
--gemini_img_url|-giu "<SomePrompt>=<https://example.com/imgs/my_image.jgp>": define image external url when --msgmaker=Gemini
USAGE
exit 0;
}
no Moose;
__PACKAGE__->meta->make_immutable(inline_constructor => 0);
# A module must return a true value. Traditionally, a module returns 1.
# But this module is a revolutionary one, so it discards all old traditions.
# Idea borrowed from Jean Forget's DateTime::Calendar::FrenchRevolutionary.
"Quand le gouvernement viole les droits du peuple,
l'insurrection est pour le peuple le plus sacré
et le plus indispensable des devoirs";
__END__
=pod
=encoding UTF-8
=head1 NAME
App::SpreadRevolutionaryDate::Config - Companion class of L<App::SpreadRevolutionaryDate>, to handle configuration file and command line arguments, subclass of L<AppConfig>.
=head1 VERSION
version 0.54
=head1 METHODS
=head2 new
Constructor class method, subclassing C<AppConfig>. Takes no argument. Returns an C<App::SpreadRevolutionaryDate::Config> object.
=head2 parse_file
Parses configuration file. Takes one optional argument: C<$filename> which should be the file path or an opened file handle of your configuration path, defaults to C<~/.config/spread-revolutionary-date/spread-revolutionary-date.conf> or C<~/.spread-r...
=head2 parse_command_line
Parses command line options. Takes no argument.
=head2 check_target_mandatory_options
Checks whether target configuration options are set to authenticate on specified target. Takes one mandatory argument: C<target_name> as string. Dies if a mandatory configuration option is missing.
=head2 get_target_arguments
Takes one mandatory argument: C<target> as a string in lower case, without any underscore (like C<'bluesky'>, C<'twitter'>, C<'mastodon'>, C<'freenode'> or C<'liberachat'>). Returns a hash with configuration options relative to the passed C<target> a...
=head2 get_msgmaker_arguments
Takes one mandatory argument: C<msgmaker> as a string. Returns a hash with configuration options relative to the passed C<msgmaker> argument.
=head2 usage
Prints usage with command line parameters and exits.
=head1 SEE ALSO
=over
=item L<spread-revolutionary-date>
=item L<App::SpreadRevolutionaryDate>
=item L<App::SpreadRevolutionaryDate::BlueskyLite>
=item L<App::SpreadRevolutionaryDate::Target>
( run in 0.681 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )