Commit Graph

63 Commits

Author SHA1 Message Date
33f7fc6515 Fix the release_attachment file-existence loop
I only dealt with the scenario where I get back an Err(_) value. This is
not what happens when the file is missing, it's what happens when there
was some other problem interacting with the file. Instead, an Ok(bool)
is returned to indicate positive identification of the presence or
absence of the file.

Something should be done about the std::io::error::Error that gets
handed back. Since I'm not expecting to see it very often, nor to really
do anything about it, I'm just emitting an error message and panicking.
2025-06-04 18:20:23 -05:00
a08466c834 Test fix: uploading missing file shouldn't panic
There's a check in the create_release_attachment() function to ensure
the files exist before attempting to read them. Clearly, it isn't
working correctly.

I've dropped the `#[should_panic]` annotation and added a better Result
unpacking routine. It will report specific messages based on the result.
2025-06-04 14:03:17 -05:00
b8225cbc04 Test should-panic when uploading missing file
I'm not sure I want this code path to panic, actually... It should
probably return some error result so the app can print an error
diagonstic.

Oh well. That's a future problem. The end result is functionally
identical.
2025-06-04 11:41:24 -05:00
098f967174 Create a TestConfig struct to separate setup
I was about to copy-paste the entire body of the attach_file_exists test
function into the attach_file_missing function. The only difference is
the file that they upload -- or don't, in the second case. I could make
a try-file-upload function and pass it many different files, but I don't
think I need that. Instead, I'll separate the test setup from the test
sequence itself.
2025-06-04 11:34:46 -05:00
e7e8a2871b Add unit test for release_attachment function
I need some kind of automated testing, and Cargo has a test framework
built-in. This isn't the smartest test and depends upon another
test-less function.

Building a mocking environment is possible but means I'm trying to
emulate some behavior I don't fully understand -- that's why I need
tests in the first place. That path leads to tests for my tests and
that's stupid.

Instead, I'm having the test read config from the environment and hit a
real Gitea server. It's up to the user to ensure they have one.
2025-06-04 11:14:12 -05:00
340b37cf05 Disable the unimplemented "create" arg for uploads
I never got around to implementing the create-and-upload behavior for
the file attachment command. I'll do it later, but for now I'm disabling
the code to quiet down the compiler warnings.
2025-06-01 20:44:56 -05:00
0a4de1cb92 Drop the prerelease flag for create-release
Releases in a "pre-release" state are... weird. I'm not going to deal
with their oddities right now, so instead I'm dropping the command
option and hard-coding a `false` at it's usage site.
2025-06-01 20:42:05 -05:00
8213ddaf46 Drop default-false for flag arguments
These arguments don't accept a value, they *are* the value. Presence or
absence tells the program everything it needs, so there's no point in
setting a default.
2025-06-01 15:06:30 -05:00
bbf1eecc52 Rename the user-agent string, include pkg version
It's no longer a test agent, it's the release one. We're including the
package version (as specified in Cargo.toml).
2025-06-01 15:03:08 -05:00
e0c21fceaf Autoformat the whole thing
I've been putting this off because I don't want to have many small
formatting commits, and I don't have any kind of pre-commit hook to do
it for me. So here it is :v
2025-06-01 13:28:06 -05:00
442c8a97f8 Create a usage guide 2025-06-01 13:27:45 -05:00
448aac531a Find matching release ID for release-attachment
I've finally implemented the by-tag release matching thing. The info put
in on the command line actually gets used to attach files to the
release!
2025-06-01 12:24:16 -05:00
fac607719d Move the CreateResult enum into the releases mod
This thing only needs to exist so Serde can decode the response JSON
properly. I'll either get a success, a missing token, *no body at all
which doesnt' make sense*, or some other ApiError text. In all cases,
the crate::Result is returned. This thing doesn't need to be public.
2025-06-01 11:07:11 -05:00
ee42e09620 Fix API response decoding -- sometimes it's an err
The reqwest might work, but the API still returns an error message.
I forgot about this old hack I had left around because I'm a big dummy.
2025-05-31 22:46:54 -05:00
8ab1f77b0e Only apply the Auth token header if a token exists 2025-05-31 22:21:41 -05:00
508e2ac802 Fix auth token header, needs "token" prefix
https://docs.gitea.com/development/api-usage#authentication

I had this right earlier, but dropped it after the switch to a pre-
configured client via ClientBuilder a few commits ago.
2025-05-31 20:53:36 -05:00
baf0117a74 Delete the error mapper utility
Now that all API functions are the new versions using my gt_tools::Error
type natively, I don't need to map from the reqwest::Error into the
wrapped variant.
2025-05-29 17:46:00 -05:00
3e563d4bb0 Clean up now-unused imports in main.rs 2025-05-29 17:45:46 -05:00
e848d9ace5 Delete old do_upload_release 2025-05-29 17:42:54 -05:00
6b537c8992 Hook in new create_release_attachment to main 2025-05-29 17:42:31 -05:00
6d95e54bc7 Transfer impl of release_attach to new home
A bunch of code has been dropped because it's no longer necessary -- yay for better data builder usage and real error handling!
2025-05-29 17:42:26 -05:00
29172bae0b Delete old do_create_release function 2025-05-28 20:29:41 -05:00
4250deb419 Implement new fn create_release() 2025-05-28 20:27:52 -05:00
a212dc3ceb Drop unused imports 2025-05-28 20:27:31 -05:00
766703b8ec Load API token at startup, not API calls 2025-05-28 20:21:13 -05:00
a16594f5a9 Use our own Error enum in fn main 2025-05-28 19:33:52 -05:00
d3a0d3f67e Fix the URL path to actually go to the API 2025-05-28 19:27:32 -05:00
90ae47abb2 Delete old do_list_releases, wire in the new one
With an `.unwrap()` because the error types don't match right now.
2025-05-27 23:05:03 -05:00
472e592400 Implement the new ::api::list_releases function 2025-05-27 23:03:09 -05:00
e19602925e Add release_attachment module
For whatever reason, releases and release attachments are separate modules in the Gitea codebase. I'm going to continue mirroring that structure for now.
2025-05-27 23:02:27 -05:00
36adabb4fd Start our own Error enum 2025-05-27 23:01:49 -05:00
84bd7fe990 Fix release API module's name 2025-05-27 20:52:23 -05:00
5db1134257 Move CreateReleaseOption to new tree 2025-05-27 20:46:04 -05:00
5f666a8179 Move the Release info structs to new tree 2025-05-27 20:43:39 -05:00
351c4902ae Create new module layout based on Gitea's own 2025-05-27 20:40:13 -05:00
b26436d5be Remove already commented-out code & dbg prints 2025-05-27 19:26:11 -05:00
053ee8def9 Use file name, not whole path as upload name 2025-05-27 19:21:05 -05:00
c731cd963c Some but not all of the upload routine 2025-05-27 19:19:09 -05:00
54487622c0 Add CLI option for uploading files + dummy hookup
I think this is the interface I want for uploading release files. There is an extra option to create the release ahead of the upload just in case it doesn't exist. One *should* create it with the create command or through the Gitea GUI so that everything can be properly written into the release info.
2025-05-25 09:08:22 -05:00
8843640385 Thread the primary args through the operation fn's 2025-05-24 19:33:46 -05:00
6b409c56d4 Change primary arguments
Owner and repo are combined into one string the same way Go dependencies or GitHub Actions are named. `<owner>/<repo>`

Each will be fetched from a matching environment variable if not specified on the command line.
2025-05-24 19:33:21 -05:00
1210b168ee Demo: missing CLI args can be filled via env vars 2025-05-24 19:00:35 -05:00
985c411902 Wire in the release CLI args to the creation fn 2025-05-24 18:47:51 -05:00
c5efb0e9f7 Add remaining release creation CLI args 2025-05-24 18:47:35 -05:00
973d9aa6c6 Fix: missing slash between owner and repo 2025-05-24 18:29:49 -05:00
0f4f2ee48f TODO: Serde won't make empty-vec 2025-05-24 18:17:41 -05:00
d4ec677b28 Internal-ize API endpoint assembly for create-release 2025-05-24 18:15:01 -05:00
2c9cd5b958 Move list-releases code to its own function 2025-05-24 18:13:39 -05:00
f7ba2e99aa Assemble fragments to get API endpoint 2025-05-24 18:13:10 -05:00
da15506896 Sort derive macros 2025-05-24 17:59:25 -05:00