Maconomy command-line interface for interacting with time sheets.
- Editing time sheet
- Editing multiple days at once
- Viewing time sheet, both as table and as JSON
- 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
- Submitting time sheet
> maconomy set 8 --job 'Some Company' --task 'Development' --day friday
> 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 day(s) for a given job and task
clear Remove hours on day(s) for a given job and task
submit Submit time sheet for week
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 8 --job '<job name>' --task '<task name>'
maconomy set 8 --job '<job name>' --task '<task name>' --day 'mon-wed, fri'
maconomy clear --job '<job name>' --task '<task name>' --day tuesday
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
Solution: Log out with maconomy logout
and then re-run your previous command.
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.
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