#!perl

use 5.010;
use strict;
use warnings;

my $prog = "cs-select-helper";

if (@ARGV < 2) {
    die "$prog: Usage: $0 <jsonfile> <content>...\n";
}

my $jsonfile = shift @ARGV;
my $content = join " ", @ARGV;

my ($id) = $content =~ /\[id=(\d+)\]/
    or die "$prog: Content does not contain id=<number>\n";

my $data;
{
    open my $fh, "<", $jsonfile or die "$prog: Cannot open file $jsonfile: $!\n";
    local $/;
    my $content = <$fh>;
    require JSON::PP;
    $data = JSON::PP::decode_json($content);
    close $fh;
}
ref($data) eq 'HASH' or die "$prog: Data in JSON file '$jsonfile' is not a hash\n";

$data->{$id} or die "$prog: ID '$id' not known in JSON file '$jsonfile'\n";

require Clipboard::Any;
my $res = Clipboard::Any::add_clipboard_content(content => $data->{$id});
$res->[0] == 200 or die "$prog: Cannot add to clipboard: $res->[0] - $res->[1]\n";

1;

# ABSTRACT: cs-select helper script
# PODNAME: cs-select-helper

__END__

=pod

=encoding UTF-8

=head1 NAME

cs-select-helper - cs-select helper script

=head1 VERSION

This document describes version 0.001 of cs-select-helper (from Perl distribution App-FzfUtils), released on 2026-04-08.

=head1 SYNOPSIS

Used by L<cs-select>.

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-FzfUtils>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-FzfUtils>.

=head1 SEE ALSO

L<cs-select>.

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 CONTRIBUTING


To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.

Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:

 % prove -l

If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
that are considered a bug and can be reported to me.

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by perlancar <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.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-FzfUtils>

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.

=cut
