mirror of
https://github.com/gnh1201/caterpillar.git
synced 2024-11-26 15:31:45 +00:00
Update console.html
This commit is contained in:
parent
564d3dba03
commit
1c77b640dd
35
console.html
35
console.html
|
@ -398,6 +398,41 @@
|
|||
show_embed(this, "https://www.youtube.com/embed/" + video_id);
|
||||
break;
|
||||
}
|
||||
},
|
||||
search: function(...args) {
|
||||
var term = this;
|
||||
var q = encodeURIComponent(args.join(' '));
|
||||
var url = "https://serp.catswords.net/api.php?q=" + q;
|
||||
|
||||
$.get(url, function(data) {
|
||||
if ("error" in data) {
|
||||
term.echo(data.error.message);
|
||||
term.echo('');
|
||||
return;
|
||||
}
|
||||
|
||||
var results = Object.values(data);
|
||||
if (results.length > 0) {
|
||||
results.forEach(function(x) {
|
||||
if (typeof x !== "object") return;
|
||||
|
||||
if ("special_response" in x) {
|
||||
term.echo("< " + x.special_response.response);
|
||||
term.echo("< " + x.special_response.source);
|
||||
term.echo('');
|
||||
} else {
|
||||
var base_domain = (function(s) {
|
||||
return s.split("/")[2];
|
||||
})(x.base_url);
|
||||
term.echo("< [[!;;;;" + x.url + ";{}]" + x.title + " from " + base_domain + "]: " + x.description);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
term.echo("No any results");
|
||||
}
|
||||
|
||||
term.echo('');
|
||||
});
|
||||
}
|
||||
}, {
|
||||
height: "100%",
|
||||
|
|
Loading…
Reference in New Issue
Block a user