PHP-GTK Client for Gemini Protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.8 KiB

2 months ago
# Yoda - Browser for [Gemini protocol](https://geminiprotocol.net)
2 months ago
Rust / GTK 4 implementation
2 months ago
> [!IMPORTANT]
> Project in development!
2 months ago
>
## Install
2 months ago
### Stable
``` bash
cargo install Yoda
```
2 months ago
### Repository
2 months ago
``` bash
git clone https://github.com/YGGverse/Yoda.git
cd Yoda
git checkout Rust-GTK4
2 months ago
cargo run
2 months ago
```
2 months ago
## Development
2 months ago
Guide and protocol draft
2 months ago
2 months ago
### `browser`
2 months ago
2 months ago
#### Filesystem
2 months ago
2 months ago
* Use [modern path pattern](https://doc.rust-lang.org/edition-guide/rust-2018/path-changes.html#no-more-modrs)
* One module implements one GTK widget, it may include additional helper files in same location (like template, CSS or DB API)
2 months ago
* For children widget - create children module, located according to hierarchy
2 months ago
#### Codebase
2 months ago
* Every module should be as minimal as possible, separate:
2 months ago
* different tasks
* massive structures
* structures with implementation
2 months ago
* Every module must:
2 months ago
* encapsulate it members: compose childs and stay composable for parents
* access 1 level of childs, never parents (e.g. through `super`)
2 months ago
* implement only one public API `struct` per file (same as one file for one class)
2 months ago
* implementable `struct` is public, where it members - private
2 months ago
* contain main `struct` implementation:
* at least one constructor that must:
* have common for application name: `new` or/and `new_arc`, `new_mutex`, etc - on return object in container
* grant ownership for new `Self` object created
2 months ago
* public `activate` action if the new object can not be activated on construct
2 months ago
* public `link` getter for GTK `widget` (parental composition)
* Public API oriented to simple (`integer`, `boolean`), standard (`std::*`) or system-wide (`gio`, `glib`, etc) data types usage to reduce internal dependencies from app implementation
2 months ago
#### Database
2 months ago
* [SQLite](https://sqlite.org) used to operate with user profile: for example, restore and save widget sessions, manage auth, history, bookmarks, etc
* Database stored in system config directory (could be detected simply using browser tools menu)
2 months ago
* Every `browser` mod may have own table, where table must:
* contain same name as mod location, for example `app_browser_widget` for `src/app/browser/widget.rs`
* every table include autoincrement `id` column and parental primary ID if exist
* column name for parental ID must have absolute namespace prefix, for example `app_browser_id` column for `app_browser_widget` table. For example, if the table has few parental keys, column set could be `id`, `parent_one_id`, `parent_two_id`, `some_data`
2 months ago
* _todo_
2 months ago
* [ ] version control for auto-migrations
* [x] transactions support for update operations
2 months ago
#### GTK
2 months ago
* Operate with [action objects](https://docs.gtk.org/gio/class.SimpleAction.html) instead of names like `win.action`. This allows to follow encapsulation, by the our goal, module must know nothing about parent presets. For example, define some action in parent, then delegate object created as construction argument
2 months ago
* Started refactory on separate widgets implementation to separated mods, because widgets may contain own tables in database and require additional mods dependencies like ORM API _todo_
2 months ago
2 months ago
### Contribution
2 months ago
* Before commit, please make sure:
2 months ago
* new branch created for every new PR `git checkout -b 'contribution-name'`
* new code follows common [rustfmt](https://rust-lang.github.io/rustfmt/) style `cargo fmt --check`
2 months ago
### Releases
2 months ago
* Package version in repository should be increased immediately after new release on [crates.io](https://crates.io/crates/yoda) and before apply new changes
2 months ago
* Currently, profile data stored in separated sub-directory, for every new release version
2 months ago
2 months ago
## See also
2 months ago
* [CPP-GTK4](https://github.com/YGGverse/Yoda/tree/CPP-GTK4) - C++ / GTK 4 implementation
* [PHP-GTK3](https://github.com/YGGverse/Yoda/tree/PHP-GTK3) - PHP / GTK 3 experimental branch