| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-11-28 | OAuth: Define ReadHeaderTimeout | jwijenbergh | |
| 2022-11-28 | OAuth Listener: Explicitly specify localhost | jwijenbergh | |
| 2022-11-28 | Formatting: Run golines | jwijenbergh | |
| 2022-11-28 | Formatting: Run gofumpt -w | jwijenbergh | |
| 2022-11-28 | Refactor: Fix revive linter errors by deleting redundant prefixes | jwijenbergh | |
| 2022-11-28 | OAuth: Refactor Token getting and do not save them in the config | jwijenbergh | |
| This commit refactors getting the tokens into receiver methods. This means that functions do not have to call the cryptic "EnsureTokens" method. The receiver getter then already verifier whether or not the tokens could be obtained (and refreshes too). The downside is that some things are now private, so testing for invalid tokens needs to be done somewhere else. This needs another patch such that clients can save the tokens themselves using a keyring. | |||
| 2022-11-28 | Lint: Run godot fix | jwijenbergh | |
| Full command: golangci-lint run --disable-all -E godot --fix | |||
| 2022-11-28 | Refactor: Remove most get prefixes for receiver functions | jwijenbergh | |
| 2022-11-28 | Document: Add comments for most functions and packages | jwijenbergh | |
| Errors and test files still need to be done. Also some getters are changed by removing the 'get' prefix | |||
| 2022-11-25 | Discovery + Exports: Rename variable to not clash with server pkg | jwijenbergh | |
| 2022-11-25 | Client Test: Do not clash oauth name with package | jwijenbergh | |
| 2022-11-24 | Workflows: Bump go version and use latest linter | jwijenbergh | |
| 2022-11-24 | Workflows: change @v2 to @v3 | jwijenbergh | |
| 2022-11-24 | Style: Use stylecheck and fix errors | jwijenbergh | |
| 2022-11-24 | Discovery + Server: Get rid of unused imports | jwijenbergh | |
| 2022-11-24 | Util: Get rid of current time helper | jwijenbergh | |
| Fixes #5 | |||
| 2022-11-24 | FSM: Rename OAuth Started back transition to No Server | jwijenbergh | |
| 2022-11-23 | FSM: Check unhandled transitions | jwijenbergh | |
| 2022-11-22 | Python Discovery: Copy over the version before freeing | jwijenbergh | |
| 2022-11-17 | Log: Rename log file to log | jwijenbergh | |
| 2022-11-17 | Log: Add additional params to get rid of Sprintf calls | jwijenbergh | |
| 2022-11-14 | Client + Server: Refresh the endpoints before checking for a valid profile | jwijenbergh | |
| 2022-11-10 | HTTP: Fix typo in status error | jwijenbergh | |
| 2022-11-10 | Logging: Add a Debug level | jwijenbergh | |
| This makes the levels more logical | |||
| 2022-11-10 | Server: Clarify doc for url when secure internet | jwijenbergh | |
| 2022-11-10 | Server: Re-initialize endpoints when getting a config | jwijenbergh | |
| 2022-11-10 | Exports + Python: Return locations for a secure internet server | jwijenbergh | |
| 2022-11-08 | Server: Implement manually renewing | jwijenbergh | |
| 2022-11-04 | Python Docs: Create a getting started page | jwijenbergh | |
| 2022-11-03 | Docker: Use debian | jwijenbergh | |
| For some reason GitHub was failing on the golang image but not locally?? | |||
| 2022-11-02 | Workflows Test: Update from v2 to v3 | jwijenbergh | |
| 2022-11-02 | CI: Update Go container to 1.19 | jwijenbergh | |
| 2022-11-01 | Python: Fix type annotation for Disco Organization | jwijenbergh | |
| 2022-10-31 | Python: Add py.typed for Mypy | jwijenbergh | |
| 2022-10-26 | Autoflake: Remove unused imports | jwijenbergh | |
| 2022-10-26 | Client + Exports + Python: Add a function for getting the current server | jwijenbergh | |
| 2022-10-25 | Client + FSM: Remove background argument from transition | jwijenbergh | |
| This fixes a race condition reported by Go's -race flag In the future we should use waitgroups to ensure the OAuth local listener is started before we sent the URL | |||
| 2022-10-25 | Verify Test: Fix ugly race condition found with Go's -race flag | jwijenbergh | |
| 2022-10-24 | README: Fix doc link | jwijenbergh | |
| 2022-10-24 | CLI: Fix incorrect Client ID | jwijenbergh | |
| 2022-10-24 | Log: Rename log file to go.log | jwijenbergh | |
| 2022-10-24 | Log: Use a multiwriter and make output neater | jwijenbergh | |
| 2022-10-24 | Client + Server + Exports: Implement optional WireGuard support | jwijenbergh | |
| 2022-10-24 | Actions + Docs: Use Sphinx docs for Python | jwijenbergh | |
| 2022-10-21 | Python: Sphinx doc files | jwijenbergh | |
| 2022-10-21 | Python: Add more meta private tags | jwijenbergh | |
| 2022-10-21 | Python: Fix meta docstring format | jwijenbergh | |
| 2022-10-19 | OAuth + Server: Fix ISS for secure internet | jwijenbergh | |
| The wrong base url was used. Use the one from the home server NOT the current location | |||
| 2022-10-19 | Refactor: Make errors use the parent's error level | jwijenbergh | |
| - All wrapped errors have to be created with types.NewWrappedError to inherit the error level from the parent - Or types.NewWrappedErrorLevel can be used which means a custom error level is given. For example this is done with cancelling OAuth - Client public errors are forwarded with handleError that also logs it with the error's level | |||
| 2022-10-19 | Discovery + Server: Remove unused 'Raw' strings | jwijenbergh | |
