2014-10-22 13:44:02 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2016-02-19 12:30:47 -03:00
|
|
|
* Copyright (C) 2014-2016 Guillaume Benoit <guillaume@manjaro.org>
|
2014-10-22 13:44:02 -03:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a get of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace AUR {
|
|
|
|
// AUR urls
|
|
|
|
const string aur_url = "http://aur.archlinux.org";
|
2016-02-19 12:30:47 -03:00
|
|
|
const string rpc_url = aur_url + "/rpc/?v=5";
|
|
|
|
const string rpc_search = "&type=search&arg=";
|
|
|
|
const string rpc_multiinfo = "&type=info";
|
2014-10-22 13:44:02 -03:00
|
|
|
const string rpc_multiinfo_arg = "&arg[]=";
|
|
|
|
|
2014-11-21 11:19:46 -03:00
|
|
|
public Json.Array search (string[] needles) {
|
2014-12-03 12:02:14 -03:00
|
|
|
var prev_inter = new Json.Array ();
|
2014-11-21 11:19:46 -03:00
|
|
|
string uri = rpc_url + rpc_search + Uri.escape_string (needles[0]);
|
2014-10-22 13:44:02 -03:00
|
|
|
var session = new Soup.Session ();
|
|
|
|
var message = new Soup.Message ("GET", uri);
|
2014-11-21 11:19:46 -03:00
|
|
|
var parser = new Json.Parser ();
|
2014-10-22 13:44:02 -03:00
|
|
|
session.send_message (message);
|
|
|
|
try {
|
|
|
|
parser.load_from_data ((string) message.response_body.flatten ().data, -1);
|
|
|
|
} catch (Error e) {
|
|
|
|
print (e.message);
|
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
unowned Json.Node? root = parser.get_root ();
|
|
|
|
if (root != null) {
|
2015-03-04 11:55:36 -03:00
|
|
|
if (root.get_object ().get_string_member ("type") == "error") {
|
|
|
|
stderr.printf ("Failed to search %s from AUR\n", needles[0]);
|
|
|
|
} else {
|
|
|
|
prev_inter = root.get_object ().get_array_member ("results");
|
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
}
|
2016-02-19 12:30:47 -03:00
|
|
|
int needles_length = needles.length;
|
|
|
|
if (needles_length == 1) {
|
2014-11-21 11:19:46 -03:00
|
|
|
return prev_inter;
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-11-21 11:19:46 -03:00
|
|
|
int i = 1;
|
2014-12-03 12:02:14 -03:00
|
|
|
var inter = new Json.Array ();
|
|
|
|
var found = new Json.Array ();
|
2016-02-19 12:30:47 -03:00
|
|
|
while (i < needles_length) {
|
2014-11-21 11:19:46 -03:00
|
|
|
inter = new Json.Array ();
|
|
|
|
uri = rpc_url + rpc_search + Uri.escape_string (needles[i]);
|
|
|
|
message = new Soup.Message ("GET", uri);
|
|
|
|
session.send_message (message);
|
|
|
|
try {
|
|
|
|
parser.load_from_data ((string) message.response_body.flatten ().data, -1);
|
|
|
|
} catch (Error e) {
|
|
|
|
print (e.message);
|
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
root = parser.get_root ();
|
|
|
|
if (root != null) {
|
2015-03-04 11:55:36 -03:00
|
|
|
if (root.get_object ().get_string_member ("type") == "error") {
|
|
|
|
stderr.printf ("Failed to search %s from AUR\n", needles[i]);
|
|
|
|
} else {
|
|
|
|
found = root.get_object ().get_array_member ("results");
|
2016-02-19 12:30:47 -03:00
|
|
|
uint j = 0;
|
|
|
|
uint k;
|
|
|
|
uint found_length = found.get_length ();
|
|
|
|
while (j < found_length) {
|
|
|
|
unowned Json.Node found_node = found.get_element (j);
|
|
|
|
k = 0;
|
|
|
|
uint prev_inter_length = prev_inter.get_length ();
|
|
|
|
while (k < prev_inter_length) {
|
|
|
|
unowned Json.Node prev_inter_node = prev_inter.get_element (k);
|
|
|
|
if (strcmp (found_node.get_object ().get_string_member ("Name"),
|
|
|
|
prev_inter_node.get_object ().get_string_member ("Name")) == 0) {
|
|
|
|
inter.add_element (prev_inter_node);
|
|
|
|
prev_inter.remove_element (k);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
}
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
}
|
2016-02-19 12:30:47 -03:00
|
|
|
if (i != (needles_length -1)) {
|
2014-11-21 11:19:46 -03:00
|
|
|
prev_inter = inter;
|
2015-01-28 12:40:05 -03:00
|
|
|
}
|
2016-02-19 12:30:47 -03:00
|
|
|
i++;
|
2014-11-21 11:19:46 -03:00
|
|
|
}
|
|
|
|
return inter;
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public Json.Array multiinfo (string[] pkgnames) {
|
|
|
|
Json.Array results = new Json.Array ();
|
2015-04-11 13:00:49 -03:00
|
|
|
if (pkgnames.length == 0) {
|
|
|
|
return results;
|
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
var builder = new StringBuilder ();
|
|
|
|
builder.append (rpc_url);
|
|
|
|
builder.append (rpc_multiinfo);
|
|
|
|
foreach (string pkgname in pkgnames) {
|
|
|
|
builder.append (rpc_multiinfo_arg);
|
2015-01-19 16:06:33 -03:00
|
|
|
builder.append (Uri.escape_string (pkgname));
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
var session = new Soup.Session ();
|
|
|
|
var message = new Soup.Message ("GET", builder.str);
|
|
|
|
session.send_message (message);
|
2015-01-28 12:40:05 -03:00
|
|
|
var parser = new Json.Parser ();
|
2014-10-22 13:44:02 -03:00
|
|
|
try {
|
|
|
|
parser.load_from_data ((string) message.response_body.flatten ().data, -1);
|
|
|
|
} catch (Error e) {
|
|
|
|
print (e.message);
|
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
unowned Json.Node? root = parser.get_root ();
|
|
|
|
if (root != null) {
|
2015-03-04 11:55:36 -03:00
|
|
|
if (root.get_object ().get_string_member ("type") == "error") {
|
|
|
|
stderr.printf ("Failed to multiinfo %s from AUR\n", builder.str);
|
|
|
|
} else {
|
|
|
|
results = root.get_object ().get_array_member ("results");
|
|
|
|
}
|
2015-01-28 12:40:05 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
return results;
|
|
|
|
}
|
|
|
|
}
|