Tooth/src/Utils/Host.vala

86 lines
2.2 KiB
Vala

using GLib;
public class Tooth.Host {
// Open a URI in the user's default application
public static bool open_uri (string _uri) {
var uri = _uri;
if (!(":" in uri))
uri = "file://" + _uri;
message (@"Opening URI: $uri");
try {
var success = AppInfo.launch_default_for_uri (uri, null);
if (!success)
throw new Oopsie.USER (_("launch_default_for_uri() failed"));
}
catch (Error e){
try {
string[] spawn_args = {"/usr/bin/xdg-open", uri};
Process.spawn_sync (null, spawn_args, null, SpawnFlags.SEARCH_PATH, null, null, null);
}
catch (Error e){
//FIXME: WHY DO THESE TWO LINES CRASH THE COMPILER WHAT IS HAPPENING HERE
// warning (@"xdg-open failed too: $(e.message)");
// app.inform (Gtk.MessageType.WARNING, _("Open this URL in your browser"), uri);
return false;
}
}
return true;
}
// FIXME: Copy a string to the clipboard
public static void copy (string str) {
// var clipboard = Gdk.Clipboard.get_for_display (display, Gdk.SELECTION_CLIPBOARD);
// clipboard.set_text (Widgets.RichLabel.restore_entities (str), -1);
}
public static string get_uri_host (string uri) {
var p1 = uri;
if ("//" in uri)
p1 = uri.split ("//")[1];
return p1.split ("/")[0];
}
public async static string download (string url) throws Error {
message (@"Downloading file: $url...");
var file_name = Path.get_basename (url);
var dir_name = Path.get_dirname (url);
var dir_path = Path.build_path (
Path.DIR_SEPARATOR_S,
Environment.get_user_cache_dir (), // Environment.get_user_special_dir (UserDirectory.DOWNLOAD),
Build.DOMAIN,
get_uri_host (dir_name));
var file_path = Path.build_path (
Path.DIR_SEPARATOR_S,
dir_path,
str_hash (dir_name).to_string () + file_name);
var dir = File.new_for_path (dir_path);
if (!dir.query_exists ())
dir.make_directory_with_parents ();
var file = File.new_for_path (file_path);
if (!file.query_exists ()) {
var msg = yield new Request.GET (url)
.await ();
var data = msg.response_body.data;
FileOutputStream stream = file.create (FileCreateFlags.PRIVATE);
stream.write (data);
message (@" OK: File written to: $file_path");
}
else
message (" OK: File already exists");
return file_path;
}
}