2017-08-29 22:03:37 +00:00
|
|
|
using Gee;
|
|
|
|
using Gtk;
|
|
|
|
|
|
|
|
using Dino.Entities;
|
2018-01-12 20:03:09 +00:00
|
|
|
using Xmpp;
|
2017-08-29 22:03:37 +00:00
|
|
|
|
|
|
|
namespace Dino.Plugins.HttpFiles {
|
|
|
|
|
2017-10-14 17:34:30 +00:00
|
|
|
public class FileProvider : Dino.FileProvider, Object {
|
2017-08-29 22:03:37 +00:00
|
|
|
|
|
|
|
private StreamInteractor stream_interactor;
|
2018-11-14 17:17:10 +00:00
|
|
|
private Dino.Database dino_db;
|
2019-12-26 14:39:12 +00:00
|
|
|
private static Regex http_url_regex = /^https?:\/\/([^\s#]*)$/; // Spaces are invalid in URLs and we can't use fragments for downloads
|
|
|
|
private static Regex omemo_url_regex = /^aesgcm:\/\/(.*)#(([A-Fa-f0-9]{2}){48}|([A-Fa-f0-9]{2}){44})$/;
|
2017-08-29 22:03:37 +00:00
|
|
|
|
|
|
|
public FileProvider(StreamInteractor stream_interactor, Dino.Database dino_db) {
|
|
|
|
this.stream_interactor = stream_interactor;
|
2018-11-14 17:17:10 +00:00
|
|
|
this.dino_db = dino_db;
|
2017-08-29 22:03:37 +00:00
|
|
|
|
2018-01-19 21:37:02 +00:00
|
|
|
stream_interactor.get_module(MessageProcessor.IDENTITY).received_pipeline.connect(new ReceivedMessageListener(this));
|
2017-08-29 22:03:37 +00:00
|
|
|
}
|
|
|
|
|
2018-01-19 21:37:02 +00:00
|
|
|
private class ReceivedMessageListener : MessageListener {
|
|
|
|
|
2018-08-27 12:57:02 +00:00
|
|
|
public string[] after_actions_const = new string[]{ "STORE" };
|
|
|
|
public override string action_group { get { return ""; } }
|
2018-01-19 21:37:02 +00:00
|
|
|
public override string[] after_actions { get { return after_actions_const; } }
|
2017-12-11 17:39:55 +00:00
|
|
|
|
2018-01-19 21:37:02 +00:00
|
|
|
private FileProvider outer;
|
|
|
|
private StreamInteractor stream_interactor;
|
|
|
|
|
|
|
|
public ReceivedMessageListener(FileProvider outer) {
|
|
|
|
this.outer = outer;
|
|
|
|
this.stream_interactor = outer.stream_interactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override async bool run(Entities.Message message, Xmpp.MessageStanza stanza, Conversation conversation) {
|
2019-12-26 14:39:12 +00:00
|
|
|
string? oob_url = Xmpp.Xep.OutOfBandData.get_url_from_message(stanza);
|
|
|
|
bool normal_file = oob_url != null && oob_url == message.body && FileProvider.http_url_regex.match(message.body);
|
|
|
|
bool omemo_file = FileProvider.omemo_url_regex.match(message.body);
|
|
|
|
if (normal_file || omemo_file) {
|
|
|
|
yield outer.on_file_message(message, conversation);
|
2018-01-19 21:37:02 +00:00
|
|
|
}
|
|
|
|
return false;
|
2017-12-11 17:39:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 17:17:10 +00:00
|
|
|
private async void on_file_message(Entities.Message message, Conversation conversation) {
|
2019-07-18 00:03:42 +00:00
|
|
|
// Hide message
|
|
|
|
ContentItem? content_item = stream_interactor.get_module(ContentItemStore.IDENTITY).get_item(conversation, 1, message.id);
|
|
|
|
if (content_item != null) {
|
|
|
|
stream_interactor.get_module(ContentItemStore.IDENTITY).set_item_hide(content_item, true);
|
2018-11-14 17:17:10 +00:00
|
|
|
}
|
2019-07-18 00:03:42 +00:00
|
|
|
|
|
|
|
var additional_info = message.id.to_string();
|
|
|
|
|
|
|
|
var receive_data = new HttpFileReceiveData();
|
|
|
|
receive_data.url = message.body;
|
|
|
|
|
|
|
|
var file_meta = new HttpFileMeta();
|
2019-08-21 17:31:46 +00:00
|
|
|
file_meta.file_name = extract_file_name_from_url(message.body);
|
2019-07-18 00:03:42 +00:00
|
|
|
file_meta.message = message;
|
|
|
|
|
|
|
|
file_incoming(additional_info, message.from, message.time, message.local_time, conversation, receive_data, file_meta);
|
2018-11-14 17:17:10 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
public async FileMeta get_meta_info(FileTransfer file_transfer, FileReceiveData receive_data, FileMeta file_meta) throws FileReceiveError {
|
|
|
|
HttpFileReceiveData? http_receive_data = receive_data as HttpFileReceiveData;
|
|
|
|
if (http_receive_data == null) return file_meta;
|
|
|
|
|
2017-08-29 22:03:37 +00:00
|
|
|
var session = new Soup.Session();
|
2019-07-18 00:03:42 +00:00
|
|
|
var head_message = new Soup.Message("HEAD", http_receive_data.url);
|
|
|
|
|
2017-08-29 22:03:37 +00:00
|
|
|
if (head_message != null) {
|
2019-07-18 00:03:42 +00:00
|
|
|
try {
|
|
|
|
yield session.send_async(head_message, null);
|
|
|
|
} catch (Error e) {
|
|
|
|
throw new FileReceiveError.GET_METADATA_FAILED("HEAD request failed");
|
|
|
|
}
|
2018-11-14 17:17:10 +00:00
|
|
|
|
|
|
|
string? content_type = null, content_length = null;
|
|
|
|
head_message.response_headers.foreach((name, val) => {
|
|
|
|
if (name == "Content-Type") content_type = val;
|
|
|
|
if (name == "Content-Length") content_length = val;
|
2017-11-23 23:38:09 +00:00
|
|
|
});
|
2019-07-18 00:03:42 +00:00
|
|
|
file_meta.mime_type = content_type;
|
2018-11-29 15:30:20 +00:00
|
|
|
if (content_length != null) {
|
2019-07-18 00:03:42 +00:00
|
|
|
file_meta.size = int.parse(content_length);
|
2018-11-29 15:30:20 +00:00
|
|
|
}
|
2018-11-14 17:17:10 +00:00
|
|
|
}
|
2019-07-18 00:03:42 +00:00
|
|
|
|
|
|
|
return file_meta;
|
2018-11-14 17:17:10 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
public async InputStream download(FileTransfer file_transfer, FileReceiveData receive_data, FileMeta file_meta) throws FileReceiveError {
|
|
|
|
HttpFileReceiveData? http_receive_data = receive_data as HttpFileReceiveData;
|
|
|
|
if (http_receive_data == null) assert(false);
|
|
|
|
|
2018-11-14 17:17:10 +00:00
|
|
|
try {
|
|
|
|
var session = new Soup.Session();
|
2019-07-18 00:03:42 +00:00
|
|
|
Soup.Request request = session.request(http_receive_data.url);
|
2018-11-14 17:17:10 +00:00
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
return yield request.send_async(null);
|
|
|
|
} catch (Error e) {
|
|
|
|
throw new FileReceiveError.DOWNLOAD_FAILED("Downloading file error: %s".printf(e.message));
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 17:17:10 +00:00
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
public FileMeta get_file_meta(FileTransfer file_transfer) throws FileReceiveError {
|
|
|
|
Conversation? conversation = stream_interactor.get_module(ConversationManager.IDENTITY).get_conversation(file_transfer.counterpart.bare_jid, file_transfer.account);
|
|
|
|
if (conversation == null) throw new FileReceiveError.GET_METADATA_FAILED("No conversation");
|
2018-11-14 17:17:10 +00:00
|
|
|
|
2020-01-09 12:21:54 +00:00
|
|
|
Message? message = dino_db.get_message_by_id(int.parse(file_transfer.info));
|
2019-07-18 00:03:42 +00:00
|
|
|
if (message == null) throw new FileReceiveError.GET_METADATA_FAILED("No message");
|
2018-11-14 17:17:10 +00:00
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
var file_meta = new HttpFileMeta();
|
|
|
|
file_meta.size = file_transfer.size;
|
|
|
|
file_meta.mime_type = file_transfer.mime_type;
|
2018-11-14 17:17:10 +00:00
|
|
|
|
2019-08-21 17:31:46 +00:00
|
|
|
file_meta.file_name = extract_file_name_from_url(message.body);
|
2019-07-18 00:03:42 +00:00
|
|
|
|
|
|
|
file_meta.message = message;
|
|
|
|
|
|
|
|
return file_meta;
|
2017-08-29 22:03:37 +00:00
|
|
|
}
|
2019-07-18 00:03:42 +00:00
|
|
|
|
|
|
|
public FileReceiveData? get_file_receive_data(FileTransfer file_transfer) {
|
|
|
|
Conversation? conversation = stream_interactor.get_module(ConversationManager.IDENTITY).get_conversation(file_transfer.counterpart.bare_jid, file_transfer.account);
|
|
|
|
if (conversation == null) return null;
|
|
|
|
|
2020-01-09 12:21:54 +00:00
|
|
|
Message? message = dino_db.get_message_by_id(int.parse(file_transfer.info));
|
2019-07-18 00:03:42 +00:00
|
|
|
if (message == null) return null;
|
|
|
|
|
|
|
|
var receive_data = new HttpFileReceiveData();
|
|
|
|
receive_data.url = message.body;
|
|
|
|
|
|
|
|
return receive_data;
|
|
|
|
}
|
|
|
|
|
2019-08-21 17:31:46 +00:00
|
|
|
private string extract_file_name_from_url(string url) {
|
|
|
|
string ret = Uri.unescape_string(url.substring(url.last_index_of("/") + 1));
|
|
|
|
if (ret.contains("#")) {
|
|
|
|
ret = ret.substring(0, ret.last_index_of("#"));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
public int get_id() { return 0; }
|
2017-08-29 22:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|