forked from snumano/CloudStack-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-url.pl
82 lines (68 loc) · 1.88 KB
/
generate-url.pl
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/perl -w
# by snumano
use strict;
use warnings;
use Digest::SHA qw(hmac_sha1);
use Getopt::Std;
use File::Basename qw(basename);
use MIME::Base64;
use WWW::Mechanize;
use Encode;
use XML::Twig;
use URI::Encode;
use JSON;
my ($field,$value);
my $my_filename = basename($0, '');
our($opt_u,$opt_a,$opt_s,$opt_f);
my $site = "http://*.*.*.*/client/api?"; #Pls enter your Base URL & API Path.
getopt "uasf";
if(!defined($opt_u) || !defined($opt_a) || !defined($opt_s) || !defined($opt_f)){
die("Usage:\n$my_filename -f <flag:1.URL, 2.response ,3.both> -u \"command=<cmd>\" -a <api_key> -s <secret_key>\n");
}
my $command = $opt_u;
my $api_key = $opt_a;
my $secret_key = $opt_s;
my $flag = $opt_f; #Flag for output:1.URL, 2.response ,3.both
my $uri = URI::Encode->new();
### Generate URL ###
#step1
my $query = $command."&apiKey=".$api_key;
my @list = split(/&/,$query);
foreach (@list){
if(/(.+)\=(.+)/){
$field = $1;
$value = $uri->encode($2, 1); # encode_reserved option is set to 1
$_ = $field."=".$value;
}
}
#step2
foreach (@list){
$_ = lc($_);
}
my $output = join("&",sort @list);
#step3
my $digest = hmac_sha1($output, $secret_key);
my $base64_encoded = encode_base64($digest);chomp($base64_encoded);
my $url_encoded = $uri->encode($base64_encoded, 1); # encode_reserved option is set to 1
my $url = $site."apikey=".$api_key."&".$command."&signature=".$url_encoded;
if($flag == 1 || $flag ==3){
print "\nGenerate URL...\n".$url."\n\n";
if($flag == 1){
exit;
}
}
### get URL ###
my $mech = WWW::Mechanize->new();
$mech->get($url);
if($command =~ /response=json/){ #json
my $obj = from_json($mech->content);
my $json = JSON->new->pretty(1)->encode($obj);
print $json;
}
else{ #XML
my $xml = encode('cp932',$mech->content); #cp932 for Win environment(ActivePerl)
my $twig = XML::Twig->new(pretty_print => 'indented', );
$twig->parse($xml);
$twig->print;
}
exit;