mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
handle directory route errors, use referenced Page argument, remove extra Rc ns dependencies
This commit is contained in:
parent
bcf4f44cfb
commit
2a1f4a89ac
4 changed files with 47 additions and 61 deletions
|
|
@ -31,6 +31,7 @@ impl File {
|
|||
|
||||
let url = uri.to_string();
|
||||
let file = File::for_uri(&url);
|
||||
let page = self.page.clone();
|
||||
|
||||
match file.query_file_type(FileQueryInfoFlags::NONE, Some(&cancellable)) {
|
||||
FileType::Directory => file.enumerate_children_async(
|
||||
|
|
@ -38,7 +39,7 @@ impl File {
|
|||
FileQueryInfoFlags::NONE,
|
||||
Priority::DEFAULT,
|
||||
Some(&cancellable),
|
||||
|result| match result {
|
||||
move |result| match result {
|
||||
Ok(file_enumerator) => {
|
||||
for entry in file_enumerator {
|
||||
match entry {
|
||||
|
|
@ -52,11 +53,11 @@ impl File {
|
|||
FileType::Mountable => todo!(),
|
||||
_ => todo!(),
|
||||
},
|
||||
Err(_) => todo!(),
|
||||
Err(e) => Status::Failure(e.to_string()).handle(&page),
|
||||
}
|
||||
}
|
||||
}
|
||||
Err(_) => todo!(),
|
||||
Err(e) => Status::Failure(e.to_string()).handle(&page),
|
||||
},
|
||||
),
|
||||
_ => file.clone().query_info_async(
|
||||
|
|
@ -64,57 +65,49 @@ impl File {
|
|||
FileQueryInfoFlags::NONE,
|
||||
Priority::DEFAULT,
|
||||
Some(&cancellable.clone()),
|
||||
{
|
||||
let page = self.page.clone();
|
||||
move |result| match result {
|
||||
Ok(file_info) => match file_info.content_type() {
|
||||
Some(content_type) => match content_type.as_str() {
|
||||
"text/plain" => {
|
||||
if matches!(*feature, Feature::Source) {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Source(uri, data).handle(page),
|
||||
Err(message) => {
|
||||
Status::Failure(message).handle(page)
|
||||
}
|
||||
}
|
||||
})
|
||||
} else if url.ends_with(".txt") {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Plain(uri, data).handle(page),
|
||||
Err(message) => {
|
||||
Status::Failure(message).handle(page)
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Gemini(uri, data).handle(page),
|
||||
Err(message) => {
|
||||
Status::Failure(message).handle(page)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
move |result| match result {
|
||||
Ok(file_info) => match file_info.content_type() {
|
||||
Some(content_type) => match content_type.as_str() {
|
||||
"text/plain" => {
|
||||
if matches!(*feature, Feature::Source) {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Source(uri, data).handle(&page),
|
||||
Err(message) => Status::Failure(message).handle(&page),
|
||||
}
|
||||
})
|
||||
} else if url.ends_with(".txt") {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Plain(uri, data).handle(&page),
|
||||
Err(message) => Status::Failure(message).handle(&page),
|
||||
}
|
||||
});
|
||||
} else {
|
||||
load_contents_async(file, cancellable, move |result| {
|
||||
match result {
|
||||
Ok(data) => Text::Gemini(uri, data).handle(&page),
|
||||
Err(message) => Status::Failure(message).handle(&page),
|
||||
}
|
||||
})
|
||||
}
|
||||
"image/png" | "image/gif" | "image/jpeg" | "image/webp" => {
|
||||
match gtk::gdk::Texture::from_file(&file) {
|
||||
Ok(texture) => Image::Bitmap(uri, texture).handle(page),
|
||||
Err(e) => Status::Failure(e.to_string()).handle(page),
|
||||
}
|
||||
}
|
||||
"image/png" | "image/gif" | "image/jpeg" | "image/webp" => {
|
||||
match gtk::gdk::Texture::from_file(&file) {
|
||||
Ok(texture) => Image::Bitmap(uri, texture).handle(&page),
|
||||
Err(e) => Status::Failure(e.to_string()).handle(&page),
|
||||
}
|
||||
mime => Status::Failure(format!(
|
||||
"Content type `{mime}` yet not supported"
|
||||
))
|
||||
.handle(page),
|
||||
},
|
||||
None => Status::Failure("Undetectable content type".to_string())
|
||||
.handle(page),
|
||||
}
|
||||
mime => {
|
||||
Status::Failure(format!("Content type `{mime}` yet not supported"))
|
||||
.handle(&page)
|
||||
}
|
||||
},
|
||||
Err(e) => Status::Failure(e.to_string()).handle(page),
|
||||
}
|
||||
None => {
|
||||
Status::Failure("Undetectable content type".to_string()).handle(&page)
|
||||
}
|
||||
},
|
||||
Err(e) => Status::Failure(e.to_string()).handle(&page),
|
||||
},
|
||||
),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
use super::Page;
|
||||
use gtk::{gdk::Texture, glib::Uri};
|
||||
use std::rc::Rc;
|
||||
|
||||
pub enum Image {
|
||||
Bitmap(Uri, Texture),
|
||||
|
|
@ -8,7 +6,7 @@ pub enum Image {
|
|||
}
|
||||
|
||||
impl Image {
|
||||
pub fn handle(&self, page: Rc<Page>) {
|
||||
pub fn handle(&self, page: &super::Page) {
|
||||
let uri = match self {
|
||||
Self::Bitmap(uri, texture) => {
|
||||
page.content.to_image(texture);
|
||||
|
|
|
|||
|
|
@ -1,12 +1,9 @@
|
|||
use super::Page;
|
||||
use std::rc::Rc;
|
||||
|
||||
pub enum Status {
|
||||
Failure(String),
|
||||
}
|
||||
|
||||
impl Status {
|
||||
pub fn handle(&self, page: Rc<Page>) {
|
||||
pub fn handle(&self, page: &super::Page) {
|
||||
let (message, widget) = match self {
|
||||
Self::Failure(message) => (message, page.content.to_status_failure()),
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
use super::Page;
|
||||
use gtk::glib::Uri;
|
||||
use std::rc::Rc;
|
||||
|
||||
pub enum Text {
|
||||
Gemini(Uri, String),
|
||||
|
|
@ -9,7 +7,7 @@ pub enum Text {
|
|||
}
|
||||
|
||||
impl Text {
|
||||
pub fn handle(&self, page: Rc<Page>) {
|
||||
pub fn handle(&self, page: &super::Page) {
|
||||
let (uri, widget) = match self {
|
||||
Self::Gemini(uri, data) => (uri, page.content.to_text_gemini(uri, data)),
|
||||
Self::Plain(uri, data) => (uri, page.content.to_text_plain(data)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue