Maconomy command-line interface for interacting with time sheets.
Note
This repo is in an early stage. Expect some minor issues and breaking changes.
- Editing and viewing time sheet
- Automatically instantiating new week if it hasn't been created yet
- Automatically creating new lines if the job/task combination isn't in the time sheet
> maconomy set --job 'Some Company' --task 'Development' --day friday 8
> maconomy get
╭────────────────────────────────────────────────────────────────────╮
│ Job name Task name Mon Tue Wed Thu Fri Sat Sun │
├────────────────────────────────────────────────────────────────────┤
│ Some Company Development 8:00 │
├────────────────────────────────────────────────────────────────────┤
│ Some Company More development │
╰────────────────────────────────────────────────────────────────────╯
Output of maconomy --help
:
Maconomy command-line interface for interacting with time sheets
Usage: maconomy <COMMAND>
Commands:
get Get the time sheet for the current week
set Set number of hours on some day for a given job and task
clear Remove hours hours on some day for a given job and task
logout Log out
line Operate on entire lines in the time sheet
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
Examples:
maconomy get
maconomy set --job '<job name>' --task '<task name>' --day tuesday 8
maconomy clear --job '<job name>' --task '<task name>'
NOTE: currently you can only interact with the current week. In the future you'll be able to specify any week.
You can also run maconomy get --help
, maconomy set --help
, etc. to see more info on how to use each command.
git clone https://github.com/mawkler/maconomy-cli
cargo install --path maconomy-cli/
Here's more information on how to install cargo (Rust's build-tool).
- Chromium or Google Chrome (used in the current authentication implementation)
Configuration is done in the file ~/.config/maconomy-cli/config.toml
. Here's what the config file should look like. All fields except cookie_path
are required:
# ~/.config/maconomy-cli/config.toml
maconomy_url = "<URL to company's Maconomy API>"
company_id = "<company ID>"
[authentication.sso]
login_url = "<URL to your company's SSO login web page for Maconomy>"
cookie_path = "<path to where auth cookie should be stored>" # Optional, defaults to ~/.local/share/maconomy-cli/maconomy_cookie
Sometimes maconomy-cli is unable reauthenticate after your session has expired. maconomy-cli currently authenticates you by opening a browser window, letting you sign in with single-sign on, and then stores your session cookie. It seems like it sometimes it fetches the incorrect authentication cookie. I'll try to fix this, but the optimal solution is to switch to a proper PKCE authentication flow, or similar. However, Maconomy seem to be using some custom authentication on top of SSO that I couldn't get working. That's why I went with the jankier web-browser-cookie-snatching solution.
As a workaround, try logging out with maconomy logout
and then re-running your previous command.
To compile and run:
cargo run
# To pass arguments to maconomy-cli you can use `--`:
cargo run -- set --job '<job name>' --task '<task name>' 8
To run tests:
cargo test