Renaming the project to Fractal

This commit is contained in:
Daniel García Moreno 2017-11-01 11:30:58 +01:00
parent a8ef587f45
commit 0a007e5189
5 changed files with 54 additions and 15 deletions

View file

@ -1,6 +1,6 @@
[package]
authors = ["Daniel Garcia <danigm@wadobo.com>"]
name = "guillotine"
name = "fractal"
version = "0.1.0"
[dependencies]

View file

@ -1,11 +1,11 @@
Guillotine
==========
Fractal
=======
<img src="https://raw.githubusercontent.com/danigm/guillotine/master/res/guillotine.png" width="200px"/>
This project is based on ruma-gtk https://github.com/jplatte/ruma-gtk
Instead of using RUMA Client, Guillotine calls directly to the matrix.org
Instead of using RUMA Client, Fractal calls directly to the matrix.org
REST API.
![screenshot](https://raw.githubusercontent.com/danigm/guillotine/master/screenshots/guillotine.png)

View file

@ -4,7 +4,7 @@
xmlns:gnome="http://api.gnome.org/doap-extensions#"
xmlns="http://usefulinc.com/ns/doap#">
<name xml:lang="en">Guillotine</name>
<name xml:lang="en">Fractal</name>
<shortdesc xml:lang="en">Matrix.org Gtk+ client</shortdesc>
<description>Matrix.org Gtk+ client</description>
<programming-language>Rust</programming-language>

View file

@ -46,7 +46,7 @@ derror!(secret_service::SsError, Error::SecretServiceError);
// TODO: Is this the correct format for GApplication IDs?
const APP_ID: &'static str = "org.gnome.guillotine";
const APP_ID: &'static str = "org.gnome.Fractal";
struct TmpMsg {
@ -257,14 +257,14 @@ impl AppOp {
// deleting previous items
let allpass = collection.get_all_items()?;
let passwds = allpass.iter()
.filter(|x| x.get_label().unwrap_or(String::from("")) == "guillotine");
.filter(|x| x.get_label().unwrap_or(strn!("")) == "fractal");
for p in passwds {
p.delete()?;
}
// create new item
collection.create_item(
"guillotine", // label
"fractal", // label
vec![
("username", &username),
("server", &server),
@ -277,13 +277,52 @@ impl AppOp {
Ok(())
}
pub fn migrate_old_passwd(&self) -> Result<(), Error> {
let ss = SecretService::new(EncryptionType::Dh)?;
let collection = ss.get_default_collection()?;
let allpass = collection.get_all_items()?;
// old name password
let passwd = allpass.iter()
.find(|x| x.get_label().unwrap_or(strn!("")) == "guillotine");
if passwd.is_none() {
return Ok(());
}
let p = passwd.unwrap();
let attrs = p.get_attributes()?;
let secret = p.get_secret()?;
let mut attr = attrs.iter()
.find(|&ref x| x.0 == "username")
.ok_or(Error::SecretServiceError)?;
let username = attr.1.clone();
attr = attrs.iter()
.find(|&ref x| x.0 == "server")
.ok_or(Error::SecretServiceError)?;
let server = attr.1.clone();
let pwd = String::from_utf8(secret).unwrap();
// removing old
for p in passwd {
p.delete()?;
}
self.store_pass(username, pwd, server)?;
Ok(())
}
pub fn get_pass(&self) -> Result<(String, String, String), Error> {
self.migrate_old_passwd()?;
let ss = SecretService::new(EncryptionType::Dh)?;
let collection = ss.get_default_collection()?;
let allpass = collection.get_all_items()?;
let passwd = allpass.iter()
.find(|x| x.get_label().unwrap_or(String::from("")) == "guillotine");
.find(|x| x.get_label().unwrap_or(strn!("")) == "fractal");
if passwd.is_none() {
return Err(Error::SecretServiceError);
@ -1248,7 +1287,7 @@ impl App {
.get_object("main_window")
.expect("Couldn't find main_window in ui file.");
window.set_title("Guillotine");
window.set_title("Fractal");
let _ = window.set_icon_from_file("res/icon.svg");
window.show_all();
@ -1549,12 +1588,12 @@ impl App {
pub fn run(self) {
self.op.lock().unwrap().init();
if let Err(err) = libnotify::init("guillotine") {
if let Err(err) = libnotify::init("fractal") {
println!("Error: can't init notifications: {}", err);
};
glib::set_application_name("guillotine");
glib::set_prgname(Some("guillotine"));
glib::set_application_name("fractal");
glib::set_prgname(Some("fractal"));
let provider = gtk::CssProvider::new();
let uri = "res/app.css";

View file

@ -304,7 +304,7 @@ pub fn dw_media(base: &Url,
w: i32,
h: i32)
-> Result<String, Error> {
let xdg_dirs = xdg::BaseDirectories::with_prefix("guillotine").unwrap();
let xdg_dirs = xdg::BaseDirectories::with_prefix("fractal").unwrap();
let re = Regex::new(r"mxc://(?P<server>[^/]+)/(?P<media>.+)")?;
let caps = re.captures(url).ok_or(Error::BackendError)?;
@ -457,7 +457,7 @@ pub fn draw_identicon(fname: &str, name: String) -> Result<String, Error> {
Color { r: 241, g: 185, b: 29, },
];
let xdg_dirs = xdg::BaseDirectories::with_prefix("guillotine").unwrap();
let xdg_dirs = xdg::BaseDirectories::with_prefix("fractal").unwrap();
let fname =
String::from(xdg_dirs.place_cache_file(fname)?.to_str().ok_or(Error::BackendError)?);