mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 23:55:33 +00:00
65 lines
3.3 KiB
Bash
Executable File
65 lines
3.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Generate Client
|
|
rm src/apis src/models docs -rf
|
|
|
|
./node_modules/\@openapitools/openapi-generator-cli/main.js generate \
|
|
-g rust \
|
|
--additional-properties=packageName=vrchatapi,supportAsync=true \
|
|
--git-user-id=vrchatapi \
|
|
--git-repo-id=vrchatapi-rust \
|
|
-o . \
|
|
-i https://raw.githubusercontent.com/vrchatapi/specification/gh-pages/openapi.yaml \
|
|
--http-user-agent="vrchatapi-rust"
|
|
#--global-property debugOperations=true
|
|
|
|
# Update entire description (replace entire line, match the random data there) line in Cargo.toml
|
|
sed -i 's/^description = ".*"/description = "VRChat API Client for Rust"/' Cargo.toml
|
|
|
|
# Remove messily pasted markdown at top of every file
|
|
find src -type f -exec sed -i '/VRChat API Banner/d' {} \;
|
|
# Remove openapi version in every file
|
|
find src -type f -exec sed -i '/The version of the OpenAPI document/d' {} \;
|
|
|
|
# Cookie storage
|
|
sed -i 's/Client::new()/Client::builder().cookie_store(true).build().unwrap()/g' src/apis/configuration.rs
|
|
sed -i 's/features = \["json", "multipart"\]/features = \["json", "cookies", "multipart"\]/g' Cargo.toml
|
|
|
|
#Fix example
|
|
printf "\n[dev-dependencies]\ntokio = { version = '1', features = ['macros', 'rt-multi-thread'] }" >> Cargo.toml
|
|
|
|
# https://github.com/OpenAPITools/openapi-generator/issues/14171
|
|
# Replace Option<GroupSearchSort> with Option<crate::models::GroupSearchSort> in src/apis
|
|
sed -i 's/Option<GroupSearchSort>/Option<crate::models::GroupSearchSort>/g' src/apis/*.rs
|
|
# Replace Option<SortOption with Option<crate::models::SortOption in src/apis
|
|
sed -i 's/Option<SortOption>/Option<crate::models::SortOption>/g' src/apis/*.rs
|
|
# Replace Option<ReleaseStatus with Option<crate::models::ReleaseStatus in src/apis
|
|
sed -i 's/Option<ReleaseStatus>/Option<crate::models::ReleaseStatus>/g' src/apis/*.rs
|
|
# Replace Option<OrderOption with Option<crate::models::OrderOption in src/apis
|
|
sed -i 's/Option<OrderOption>/Option<crate::models::OrderOption>/g' src/apis/*.rs
|
|
# Replace message_type: InviteMessageType with message_type: crate::models::InviteMessageType in src/apis
|
|
sed -i 's/message_type: InviteMessageType/message_type: crate::models::InviteMessageType/g' src/apis/*.rs
|
|
|
|
# -Missing Github Issue-
|
|
# Append patches/InviteMessageType-Display.rs to invite_message_type.rs
|
|
cat patches/InviteMessageType-Display.rs >> src/models/invite_message_type.rs
|
|
# Remove the ToString section and it's included function
|
|
# impl ToString for InviteMessageType {
|
|
# fn to_string(&self) -> String {
|
|
# match self {
|
|
# Self::Message => String::from("message"),
|
|
# Self::Response => String::from("response"),
|
|
# Self::Request => String::from("request"),
|
|
# Self::RequestResponse => String::from("requestResponse"),
|
|
# }
|
|
# }
|
|
# }
|
|
sed -z -i 's/impl ToString for InviteMessageType {\n[ a-zA-Z_\(\)&-\>{\n:=",]*}\n }\n}//g' src/models/invite_message_type.rs
|
|
# https://github.com/vrchatapi/specification/issues/241
|
|
cat patches/2FA_Current_User.rs >> src/models/current_user.rs
|
|
sed -i 's/pub use self::current_user::CurrentUser;/pub use self::current_user::{EitherUserOrTwoFactor, CurrentUser};/g' src/models/mod.rs
|
|
sed -i 's/Result<crate::models::CurrentUser, Error<GetCurrentUserError>>/Result<crate::models::EitherUserOrTwoFactor, Error<GetCurrentUserError>>/g' src/apis/authentication_api.rs
|
|
|
|
|
|
cargo build
|