aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Convert.pm
blob: c8306281e655f46d914cce1d4028d5f0fdc11202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package Plugin::Convert;

use strict;
use warnings;
use IPC::Open2;

sub configure {
	my $self = shift;
	my $cmdref = shift;

	$cmdref->($self, "convert", sub { $self->convert(@_); } );

	return $self;
}

sub convert {
	my ($self, $irc, $logger, $who, $where, $ided, $rest, $no_reenter, @arguments) = @_;

	my $from = (split / to /, $rest)[0];
	my $to = (split / to /, $rest)[1];

	return "Syntax: convert <from> to <to>\n" unless ($from and $to);

	my ($out, $in);
	my $pid = open2($out, $in, 'units', '-1', '--compact', '--quiet');

	print $in "$from\n$to\n";
	my $converted = <$out>;
	chomp $converted;

	close($in);
	waitpid($pid, 0);
	my $exit_status = $? >> 8;
	# `units` doesn't actually seem to set this non-zero, but use it anyway
	return "Conversion error" if $exit_status;

	return "Converted: $converted\n";
}
1;