mirror of
https://github.com/tribufu/sdk-rust
synced 2026-02-04 09:23:08 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 373b800a3d | |||
| d2ec71e7ae | |||
| 6ab490ce07 |
@@ -5,45 +5,38 @@ src/models/account.rs
|
||||
src/models/application.rs
|
||||
src/models/application_type.rs
|
||||
src/models/authorize_request.rs
|
||||
src/models/client.rs
|
||||
src/models/client_info.rs
|
||||
src/models/client_type.rs
|
||||
src/models/code_challenge_method.rs
|
||||
src/models/code_response.rs
|
||||
src/models/create_user.rs
|
||||
src/models/crypto_view_model.rs
|
||||
src/models/game.rs
|
||||
src/models/game_server.rs
|
||||
src/models/game_server_cluster.rs
|
||||
src/models/game_server_query.rs
|
||||
src/models/game_server_status.rs
|
||||
src/models/grant_type.rs
|
||||
src/models/group.rs
|
||||
src/models/group_application.rs
|
||||
src/models/group_game.rs
|
||||
src/models/group_member.rs
|
||||
src/models/group_rank.rs
|
||||
src/models/hash_view_model.rs
|
||||
src/models/introspect_request.rs
|
||||
src/models/introspect_response.rs
|
||||
src/models/ip_address.rs
|
||||
src/models/leaderboard_item.rs
|
||||
src/models/leaderboard_order.rs
|
||||
src/models/login_provider.rs
|
||||
src/models/login_request.rs
|
||||
src/models/login_response.rs
|
||||
src/models/mod.rs
|
||||
src/models/package.rs
|
||||
src/models/package_release.rs
|
||||
src/models/product.rs
|
||||
src/models/product_price.rs
|
||||
src/models/product_type.rs
|
||||
src/models/profile.rs
|
||||
src/models/profile_game.rs
|
||||
src/models/profile_group.rs
|
||||
src/models/refresh_request.rs
|
||||
src/models/register_request.rs
|
||||
src/models/response_type.rs
|
||||
src/models/revoke_request.rs
|
||||
src/models/search.rs
|
||||
src/models/search_request.rs
|
||||
src/models/search_type.rs
|
||||
src/models/server_metrics.rs
|
||||
src/models/storage_file.rs
|
||||
src/models/server_status.rs
|
||||
src/models/subscription.rs
|
||||
src/models/token_hint_type.rs
|
||||
src/models/token_request.rs
|
||||
src/models/token_response.rs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tribufu"
|
||||
version = "1.3.0"
|
||||
version = "1.1.0"
|
||||
description = "REST API to access Tribufu services."
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
@@ -19,6 +19,7 @@ exclude = [
|
||||
".vscode/",
|
||||
"examples/",
|
||||
"scripts/",
|
||||
"scripts/",
|
||||
]
|
||||
|
||||
[workspace]
|
||||
@@ -32,7 +33,7 @@ crate-type = ["rlib"]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tribufu-constants = { version = "1.3.0", path = "./src/constants" }
|
||||
tribufu-constants = { version = "0.0.5", path = "./src/constants" }
|
||||
async-trait = "^0.1"
|
||||
reqwest = { version = "^0.12", features = ["json", "multipart"] }
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Tribufu Rust
|
||||
|
||||
Rust SDK to access Tribufu APIs and services.
|
||||
Native SDK to access Tribufu APIs and services.
|
||||
|
||||
[![Crates.io][crates-badge]][crates-url]
|
||||
[![MIT License][mit-badge]][mit-url]
|
||||
|
||||
157
config/cbindgen.toml
Normal file
157
config/cbindgen.toml
Normal file
@@ -0,0 +1,157 @@
|
||||
language = "C"
|
||||
header = "// Copyright (c) Tribufu. All Rights Reserved.\n// SPDX-License-Identifier: MIT"
|
||||
pragma_once = true
|
||||
include_version = false
|
||||
namespaces = []
|
||||
using_namespaces = []
|
||||
sys_includes = ["tribufu/prelude.h"]
|
||||
includes = []
|
||||
no_includes = true
|
||||
cpp_compat = false
|
||||
braces = "NextLine"
|
||||
line_length = 100
|
||||
tab_width = 4
|
||||
documentation = true
|
||||
documentation_style = "doxy"
|
||||
style = "tag"
|
||||
|
||||
[defines]
|
||||
"debug_assertions" = "TRIBUFU_DEBUG"
|
||||
"not(debug_assertions)" = "TRIBUFU_RELEASE"
|
||||
"panic = abort" = "TRIBUFU_PANIC_ABORT"
|
||||
"panic = unwind" = "TRIBUFU_PANIC_UNWIND"
|
||||
"proc_macro" = "TRIBUFU_PROC_MACRO"
|
||||
"target_arch = aarch64" = "TRIBUFU_AARCH64"
|
||||
"target_arch = arm" = "TRIBUFU_ARM"
|
||||
"target_arch = armV7" = "TRIBUFU_ARMV7"
|
||||
"target_arch = armv4t" = "TRIBUFU_ARMV4T"
|
||||
"target_arch = armv6" = "TRIBUFU_ARMV6"
|
||||
"target_arch = armv7a" = "TRIBUFU_ARMV7A"
|
||||
"target_arch = armv7s" = "TRIBUFU_ARMV7S"
|
||||
"target_arch = avr" = "TRIBUFU_AVR"
|
||||
"target_arch = bpfeb" = "TRIBUFU_BPFEB"
|
||||
"target_arch = bpfel" = "TRIBUFU_BPFEL"
|
||||
"target_arch = hexagon" = "TRIBUFU_HEXAGON"
|
||||
"target_arch = i386" = "TRIBUFU_I386"
|
||||
"target_arch = i586" = "TRIBUFU_I586"
|
||||
"target_arch = i686" = "TRIBUFU_I686"
|
||||
"target_arch = m68k" = "TRIBUFU_M68K"
|
||||
"target_arch = mips" = "TRIBUFU_MIPS"
|
||||
"target_arch = mipsel" = "TRIBUFU_MIPSEL"
|
||||
"target_arch = msp430" = "TRIBUFU_MSP430"
|
||||
"target_arch = powerpc" = "TRIBUFU_POWERPC"
|
||||
"target_arch = powerpc64" = "TRIBUFU_POWERPC64"
|
||||
"target_arch = powerpc64l" = "TRIBUFU_POWERPC64L"
|
||||
"target_arch = riscv32gc" = "TRIBUFU_RISCV32GC"
|
||||
"target_arch = s390x" = "TRIBUFU_S390X"
|
||||
"target_arch = sparc" = "TRIBUFU_SPARC"
|
||||
"target_arch = sparc64" = "TRIBUFU_SPARC64"
|
||||
"target_arch = thumbv4t" = "TRIBUFU_THUMBV4T"
|
||||
"target_arch = thumbv7a" = "TRIBUFU_THUMBV7A"
|
||||
"target_arch = thumbv7neon" = "TRIBUFU_THUMBV7NEON"
|
||||
"target_arch = wasm32" = "TRIBUFU_WASM32"
|
||||
"target_arch = wasm64" = "TRIBUFU_WASM64"
|
||||
"target_arch = x86" = "TRIBUFU_X86"
|
||||
"target_arch = x86_64" = "TRIBUFU_X86_64"
|
||||
"target_endian = big" = "TRIBUFU_BIG_ENDIAN"
|
||||
"target_endian = little" = "TRIBUFU_LITTLE_ENDIAN"
|
||||
"target_env = gnu" = "TRIBUFU_GNU"
|
||||
"target_env = msvc" = "TRIBUFU_MSVC"
|
||||
"target_env = musl" = "TRIBUFU_MUSL"
|
||||
"target_env = sgx" = "TRIBUFU_SGX"
|
||||
"target_family = unix" = "TRIBUFU_UNIX"
|
||||
"target_family = wasm" = "TRIBUFU_WASM"
|
||||
"target_family = windows" = "TRIBUFU_MICROSOFT"
|
||||
"target_feature = avx" = "TRIBUFU_AVX"
|
||||
"target_feature = avx2" = "TRIBUFU_AVX2"
|
||||
"target_feature = crt-static" = "TRIBUFU_CRTSTATIC"
|
||||
"target_feature = rdrand" = "TRIBUFU_RDRAND"
|
||||
"target_feature = sse" = "TRIBUFU_SSE"
|
||||
"target_feature = sse2" = "TRIBUFU_SSE2"
|
||||
"target_feature = sse4.1" = "TRIBUFU_SSE41"
|
||||
"target_has_atomic = 128" = "TRIBUFU_ATOMIC_128"
|
||||
"target_has_atomic = 16" = "TRIBUFU_ATOMIC_16"
|
||||
"target_has_atomic = 32" = "TRIBUFU_ATOMIC_32"
|
||||
"target_has_atomic = 64" = "TRIBUFU_ATOMIC_64"
|
||||
"target_has_atomic = 8" = "TRIBUFU_ATOMIC_8"
|
||||
"target_has_atomic = ptr" = "TRIBUFU_ATOMIC_PTR"
|
||||
"target_os = android" = "TRIBUFU_ANDROID"
|
||||
"target_os = dragonfly" = "TRIBUFU_DRAGONFLY"
|
||||
"target_os = freebsd" = "TRIBUFU_FREEBSD"
|
||||
"target_os = ios" = "TRIBUFU_IOS"
|
||||
"target_os = linux" = "TRIBUFU_LINUX"
|
||||
"target_os = macos" = "TRIBUFU_MACOS"
|
||||
"target_os = netbsd" = "TRIBUFU_NETBSD"
|
||||
"target_os = openbsd" = "TRIBUFU_OPENBSD"
|
||||
"target_os = windows" = "TRIBUFU_WINDOWS"
|
||||
"target_pointer_width = 16" = "TRIBUFU_POINTER_16"
|
||||
"target_pointer_width = 32" = "TRIBUFU_POINTER_32"
|
||||
"target_pointer_width = 64" = "TRIBUFU_POINTER_64"
|
||||
"target_vendor = apple" = "TRIBUFU_APPLE"
|
||||
"target_vendor = fortanix" = "TRIBUFU_FORTANIX"
|
||||
"target_vendor = pc" = "TRIBUFU_MICROSOFT"
|
||||
"target_vendor = unknown" = "TRIBUFU_UNKNOWN"
|
||||
|
||||
[export]
|
||||
include = []
|
||||
exclude = []
|
||||
item_types = ["enums", "structs", "typedefs", "functions"]
|
||||
renaming_overrides_prefixing = false
|
||||
|
||||
[layout]
|
||||
packed = "PACKED"
|
||||
aligned_n = "ALIGNED"
|
||||
|
||||
[fn]
|
||||
prefix = "TRIBUFU_API"
|
||||
args = "horizontal"
|
||||
must_use = "MUST_USE_FUNC"
|
||||
no_return = "NO_RETURN"
|
||||
rename_args = "None"
|
||||
sort_by = "Name"
|
||||
|
||||
[struct]
|
||||
rename_fields = "None"
|
||||
must_use = "MUST_USE_STRUCT"
|
||||
derive_constructor = true
|
||||
derive_eq = false
|
||||
derive_neq = false
|
||||
derive_lt = false
|
||||
derive_lte = false
|
||||
derive_gt = false
|
||||
derive_gte = false
|
||||
|
||||
[enum]
|
||||
rename_variants = "None"
|
||||
add_sentinel = false
|
||||
prefix_with_name = false
|
||||
enum_class = false
|
||||
derive_helper_methods = false
|
||||
derive_const_casts = false
|
||||
derive_mut_casts = false
|
||||
must_use = "MUST_USE_ENUM"
|
||||
derive_tagged_enum_destructor = false
|
||||
derive_tagged_enum_copy_constructor = false
|
||||
derive_tagged_enum_copy_assignment = false
|
||||
private_default_tagged_enum_constructor = false
|
||||
|
||||
[const]
|
||||
allow_static_const = true
|
||||
allow_constexpr = false
|
||||
sort_by = "Name"
|
||||
|
||||
[macro_expansion]
|
||||
bitflags = true
|
||||
|
||||
[parse]
|
||||
parse_deps = true
|
||||
include = []
|
||||
exclude = []
|
||||
clean = false
|
||||
extra_bindings = []
|
||||
|
||||
[parse.expand]
|
||||
crates = []
|
||||
all_features = true
|
||||
default_features = true
|
||||
features = []
|
||||
14
examples/c/main.c
Normal file
14
examples/c/main.c
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#include <stdio.h>
|
||||
#include <tribufu/api.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
tribufu_api_initialize();
|
||||
char *version = tribufu_api_get_user_agent();
|
||||
printf("%s\n", version);
|
||||
tribufu_free_string(version);
|
||||
tribufu_api_shutdown();
|
||||
return 0;
|
||||
}
|
||||
212
examples/c/premake5.lua
Normal file
212
examples/c/premake5.lua
Normal file
@@ -0,0 +1,212 @@
|
||||
--- @diagnostic disable: undefined-global
|
||||
|
||||
project "example_c"
|
||||
location "."
|
||||
kind "ConsoleApp"
|
||||
language "C"
|
||||
|
||||
targetdir("../../bin/%{cfg.platform}")
|
||||
objdir("../../target/%{cfg.buildcfg}/obj/%{prj.name}/%{cfg.platform}")
|
||||
|
||||
files
|
||||
{
|
||||
"./**.c",
|
||||
"./**.h",
|
||||
"../../include/**.h",
|
||||
}
|
||||
|
||||
vpaths
|
||||
{
|
||||
["Sources"] = { "./**.c" },
|
||||
["Headers"] = { "./**.h", "../../include/**.h" },
|
||||
}
|
||||
|
||||
includedirs
|
||||
{
|
||||
"../../include",
|
||||
}
|
||||
|
||||
libdirs
|
||||
{
|
||||
"../../bin/%{cfg.platform}",
|
||||
}
|
||||
|
||||
-- Profile
|
||||
|
||||
filter { "configurations:debug" }
|
||||
runtime "Debug"
|
||||
symbols "On"
|
||||
|
||||
defines
|
||||
{
|
||||
"DEBUG",
|
||||
"TRACE",
|
||||
"TRIBUFU_DEBUG",
|
||||
"TRIBUFU_TRACE",
|
||||
}
|
||||
|
||||
filter { "configurations:release" }
|
||||
runtime "Release"
|
||||
optimize "On"
|
||||
|
||||
defines
|
||||
{
|
||||
"RELEASE",
|
||||
"TRIBUFU_RELEASE",
|
||||
}
|
||||
|
||||
-- Platform
|
||||
|
||||
filter { "platforms:win-*" }
|
||||
system "windows"
|
||||
systemversion "latest"
|
||||
staticruntime "On"
|
||||
toolset "msc"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_WINDOWS",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk.lib",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:osx-*" }
|
||||
system "macosx"
|
||||
systemversion "10.15"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_APPLE",
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MAC",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:linux-*" }
|
||||
system "linux"
|
||||
toolset "gcc"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_LINUX",
|
||||
"TRIBUFU_UNIX",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:android-*" }
|
||||
system "android"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_ANDROID",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MOBILE",
|
||||
"TRIBUFU_UNIX",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:ios-*" }
|
||||
system "ios"
|
||||
systemversion "13.0"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_APPLE",
|
||||
"TRIBUFU_IOS",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MOBILE",
|
||||
"TRIBUFU_MONOLITHIC",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
-- Architecture
|
||||
|
||||
filter { "platforms:*-x86" }
|
||||
architecture "x86"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_32BITS",
|
||||
"TRIBUFU_X86",
|
||||
}
|
||||
|
||||
filter { "platforms:*-x64" }
|
||||
architecture "x64"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_64BITS",
|
||||
"TRIBUFU_X64",
|
||||
}
|
||||
|
||||
filter { "platforms:*-arm64" }
|
||||
architecture "ARM64"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_64BITS",
|
||||
"TRIBUFU_ARM64",
|
||||
}
|
||||
14
examples/cpp/main.cpp
Normal file
14
examples/cpp/main.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#include <iostream>
|
||||
#include <tribufu/api.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
tribufu_api_initialize();
|
||||
const char *version = tribufu_api_get_user_agent();
|
||||
std::cout << version << std::endl;
|
||||
tribufu_free_string((char *)version);
|
||||
tribufu_api_shutdown();
|
||||
return 0;
|
||||
}
|
||||
213
examples/cpp/premake5.lua
Normal file
213
examples/cpp/premake5.lua
Normal file
@@ -0,0 +1,213 @@
|
||||
--- @diagnostic disable: undefined-global
|
||||
|
||||
project "example_cpp"
|
||||
location "."
|
||||
kind "ConsoleApp"
|
||||
language "C++"
|
||||
cppdialect "C++20"
|
||||
|
||||
targetdir("../../bin/%{cfg.platform}")
|
||||
objdir("../../target/%{cfg.buildcfg}/obj/%{prj.name}/%{cfg.platform}")
|
||||
|
||||
files
|
||||
{
|
||||
"./**.cpp",
|
||||
"./**.h",
|
||||
"../../include/**.h",
|
||||
}
|
||||
|
||||
vpaths
|
||||
{
|
||||
["Sources"] = { "./**.cpp" },
|
||||
["Headers"] = { "./**.h", "../../include/**.h" },
|
||||
}
|
||||
|
||||
includedirs
|
||||
{
|
||||
"../../include",
|
||||
}
|
||||
|
||||
libdirs
|
||||
{
|
||||
"../../bin/%{cfg.platform}",
|
||||
}
|
||||
|
||||
-- Profile
|
||||
|
||||
filter { "configurations:debug" }
|
||||
runtime "Debug"
|
||||
symbols "On"
|
||||
|
||||
defines
|
||||
{
|
||||
"DEBUG",
|
||||
"TRACE",
|
||||
"TRIBUFU_DEBUG",
|
||||
"TRIBUFU_TRACE",
|
||||
}
|
||||
|
||||
filter { "configurations:release" }
|
||||
runtime "Release"
|
||||
optimize "On"
|
||||
|
||||
defines
|
||||
{
|
||||
"RELEASE",
|
||||
"TRIBUFU_RELEASE",
|
||||
}
|
||||
|
||||
-- Platform
|
||||
|
||||
filter { "platforms:win-*" }
|
||||
system "windows"
|
||||
systemversion "latest"
|
||||
staticruntime "On"
|
||||
toolset "msc"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_WINDOWS",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk.lib",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:osx-*" }
|
||||
system "macosx"
|
||||
systemversion "10.15"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_APPLE",
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MAC",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:linux-*" }
|
||||
system "linux"
|
||||
toolset "gcc"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_DESKTOP",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_LINUX",
|
||||
"TRIBUFU_UNIX",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:android-*" }
|
||||
system "android"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_ANDROID",
|
||||
"TRIBUFU_DYNAMIC",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MOBILE",
|
||||
"TRIBUFU_UNIX",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
prelinkcommands
|
||||
{
|
||||
}
|
||||
|
||||
postbuildcommands
|
||||
{
|
||||
}
|
||||
|
||||
filter { "platforms:ios-*" }
|
||||
system "ios"
|
||||
systemversion "13.0"
|
||||
toolset "clang"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_APPLE",
|
||||
"TRIBUFU_IOS",
|
||||
"TRIBUFU_LIBRARY",
|
||||
"TRIBUFU_MOBILE",
|
||||
"TRIBUFU_MONOLITHIC",
|
||||
}
|
||||
|
||||
links
|
||||
{
|
||||
"tribufu_sdk",
|
||||
}
|
||||
|
||||
-- Architecture
|
||||
|
||||
filter { "platforms:*-x86" }
|
||||
architecture "x86"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_32BITS",
|
||||
"TRIBUFU_X86",
|
||||
}
|
||||
|
||||
filter { "platforms:*-x64" }
|
||||
architecture "x64"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_64BITS",
|
||||
"TRIBUFU_X64",
|
||||
}
|
||||
|
||||
filter { "platforms:*-arm64" }
|
||||
architecture "ARM64"
|
||||
|
||||
defines
|
||||
{
|
||||
"TRIBUFU_64BITS",
|
||||
"TRIBUFU_ARM64",
|
||||
}
|
||||
6
include/tribufu.h
Normal file
6
include/tribufu.h
Normal file
@@ -0,0 +1,6 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/api.h>
|
||||
6
include/tribufu/api.h
Normal file
6
include/tribufu/api.h
Normal file
@@ -0,0 +1,6 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/native.h>
|
||||
25
include/tribufu/macros.h
Normal file
25
include/tribufu/macros.h
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define TRIBUFU_CPP
|
||||
#endif
|
||||
|
||||
#ifndef EXTERN_C
|
||||
#ifdef TRIBUFU_CPP
|
||||
#define EXTERN_C extern "C"
|
||||
#else
|
||||
#define EXTERN_C
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define TRIBUFU_API EXTERN_C
|
||||
|
||||
/*
|
||||
#ifdef TRIBUFU_LIBRARY
|
||||
#define TRIBUFU_API DLLEXPORT
|
||||
#else
|
||||
#define TRIBUFU_API DLLIMPORT
|
||||
#endif
|
||||
*/
|
||||
38
include/tribufu/native.h
Normal file
38
include/tribufu/native.h
Normal file
@@ -0,0 +1,38 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/prelude.h>
|
||||
|
||||
typedef void TribufuApiGetUserInfoCallbackData;
|
||||
|
||||
typedef void (*TribufuApiGetUserInfoCallback)(void*, const TribufuApiGetUserInfoCallbackData*);
|
||||
|
||||
/**
|
||||
* Gets the user agent string for the Tribufu API.
|
||||
*/
|
||||
TRIBUFU_API const char *tribufu_api_get_user_agent(void);
|
||||
|
||||
TRIBUFU_API void tribufu_api_get_user_info(void *context, TribufuApiGetUserInfoCallback callback);
|
||||
|
||||
/**
|
||||
* Gets the version of the Tribufu API.
|
||||
*/
|
||||
TRIBUFU_API const char *tribufu_api_get_version(void);
|
||||
|
||||
/**
|
||||
* Initialize the Tribufu API instance.
|
||||
*
|
||||
* This must be called before any other API functions.
|
||||
*/
|
||||
TRIBUFU_API bool tribufu_api_initialize(void);
|
||||
|
||||
/**
|
||||
* Shutdown the Tribufu API instance.
|
||||
*
|
||||
* This must be called when the API is no longer needed.
|
||||
*/
|
||||
TRIBUFU_API void tribufu_api_shutdown(void);
|
||||
|
||||
TRIBUFU_API void tribufu_free_string(char *ptr);
|
||||
21
include/tribufu/platform.h
Normal file
21
include/tribufu/platform.h
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef DLLEXPORT
|
||||
#define DLLEXPORT __declspec(dllexport)
|
||||
#endif
|
||||
#ifndef DLLIMPORT
|
||||
#define DLLIMPORT __declspec(dllimport)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __MACH__ || __APPLE__ || __linux__ || __FreeBSD__ || __ANDROID__
|
||||
#ifndef DLLEXPORT
|
||||
#define DLLEXPORT __attribute__((visibility("default")))
|
||||
#endif
|
||||
#ifndef DLLIMPORT
|
||||
#define DLLIMPORT __attribute__((visibility("default")))
|
||||
#endif
|
||||
#endif
|
||||
7
include/tribufu/prelude.h
Normal file
7
include/tribufu/prelude.h
Normal file
@@ -0,0 +1,7 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/macros.h>
|
||||
#include <tribufu/platform.h>
|
||||
#include <tribufu/std.h>
|
||||
26
include/tribufu/std.h
Normal file
26
include/tribufu/std.h
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef TRIBUFU_CPP
|
||||
#include <algorithm>
|
||||
#include <cstdarg>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <functional>
|
||||
#include <future>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <new>
|
||||
#include <ostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <utility>
|
||||
#endif
|
||||
31
premake5.lua
Normal file
31
premake5.lua
Normal file
@@ -0,0 +1,31 @@
|
||||
--- @diagnostic disable: undefined-global
|
||||
|
||||
workspace "tribufu"
|
||||
location "."
|
||||
configurations { "debug", "release" }
|
||||
|
||||
if _ACTION == "vs2022" then
|
||||
platforms {
|
||||
"win-arm64",
|
||||
"win-x64",
|
||||
"win-x86",
|
||||
}
|
||||
end
|
||||
|
||||
if _ACTION == "gmake2" then
|
||||
platforms {
|
||||
"linux-arm64",
|
||||
"linux-x64",
|
||||
"linux-x86",
|
||||
}
|
||||
end
|
||||
|
||||
if _ACTION == "xcode4" then
|
||||
platforms {
|
||||
"osx-arm64",
|
||||
"osx-x64",
|
||||
}
|
||||
end
|
||||
|
||||
include "examples/c"
|
||||
include "examples/cpp"
|
||||
3
scripts/cbindgen.ps1
Normal file
3
scripts/cbindgen.ps1
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
cbindgen --config ./config/cbindgen.toml --crate tribufu-sdk --output ./include/tribufu/native.h
|
||||
10
scripts/unix/premake.sh
Normal file
10
scripts/unix/premake.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
|
||||
then
|
||||
./vendor/premake-core/linux/premake5 gmake2
|
||||
|
||||
elif [ "$(uname)" = "Darwin" ]
|
||||
then
|
||||
./vendor/premake-core/mac/premake5 xcode4
|
||||
fi
|
||||
@@ -2,3 +2,11 @@
|
||||
|
||||
echo "Building for win-x64"
|
||||
cargo build --workspace
|
||||
|
||||
New-Item "bin/win-x64" -ItemType Directory -Force
|
||||
Remove-Item -Path "bin/win-x64/*" -Force -Recurse
|
||||
|
||||
Copy-Item -Path "target/debug/tribufu_sdk.dll.lib" -Destination "bin/win-x64/tribufu_sdk.lib"
|
||||
Copy-Item -Path "target/debug/tribufu_sdk.dll" -Destination "bin/win-x64/tribufu_sdk.dll"
|
||||
|
||||
msbuild /p:Configuration="debug" /p:Platform="win-x64"
|
||||
|
||||
3
scripts/windows/premake.bat
Normal file
3
scripts/windows/premake.bat
Normal file
@@ -0,0 +1,3 @@
|
||||
@echo off
|
||||
|
||||
call .\vendor\premake-core\windows\premake5.exe vs2022
|
||||
@@ -1,11 +1,9 @@
|
||||
#!/usr/bin/env pwsh
|
||||
|
||||
$crates = @(
|
||||
"tribufu-types",
|
||||
"tribufu-constants",
|
||||
"tribufu-error",
|
||||
"tribufu-json",
|
||||
"tribufu-log",
|
||||
"tribufu-platform",
|
||||
"tribufu-api",
|
||||
"tribufu"
|
||||
)
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -40,7 +40,7 @@ impl Default for Configuration {
|
||||
fn default() -> Self {
|
||||
Configuration {
|
||||
base_path: "http://localhost".to_owned(),
|
||||
user_agent: Some("OpenAPI-Generator/1.3.0/rust".to_owned()),
|
||||
user_agent: Some("OpenAPI-Generator/1.1.0/rust".to_owned()),
|
||||
client: reqwest::Client::new(),
|
||||
basic_auth: None,
|
||||
oauth_access_token: None,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,12 +1,11 @@
|
||||
[package]
|
||||
name = "tribufu-constants"
|
||||
version = "1.3.0"
|
||||
version = "0.0.5"
|
||||
description = "Tribufu Constants"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_constants"
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
[package]
|
||||
name = "tribufu-error"
|
||||
version = "1.3.0"
|
||||
version = "0.0.5"
|
||||
description = "Tribufu Error"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_error"
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
[package]
|
||||
name = "tribufu-json"
|
||||
version = "1.3.0"
|
||||
version = "0.0.5"
|
||||
description = "Tribufu Json"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_json"
|
||||
@@ -14,6 +13,6 @@ crate-type = ["rlib"]
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tribufu-error = { version = "1.3.0", path = "../error" }
|
||||
tribufu-error = { version = "0.0.5", path = "../error" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
[package]
|
||||
name = "tribufu-log"
|
||||
version = "1.3.0"
|
||||
version = "0.0.5"
|
||||
description = "Tribufu Log"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_log"
|
||||
@@ -14,7 +13,7 @@ crate-type = ["rlib"]
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tribufu-error = { version = "1.3.0", path = "../error" }
|
||||
tribufu-error = { version = "0.0.5", path = "../error" }
|
||||
chrono = "0.4.23"
|
||||
env_logger = "0.10.1"
|
||||
log = "0.4"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,12 +13,12 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Account {
|
||||
#[serde(rename = "id", deserialize_with = "Option::deserialize")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<Option<String>>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "provider")]
|
||||
pub provider: models::LoginProvider,
|
||||
#[serde(rename = "provider", skip_serializing_if = "Option::is_none")]
|
||||
pub provider: Option<models::LoginProvider>,
|
||||
#[serde(rename = "user_id", skip_serializing_if = "Option::is_none")]
|
||||
pub user_id: Option<String>,
|
||||
#[serde(rename = "authorized", skip_serializing_if = "Option::is_none")]
|
||||
@@ -32,11 +32,11 @@ pub struct Account {
|
||||
}
|
||||
|
||||
impl Account {
|
||||
pub fn new(id: Option<String>, provider: models::LoginProvider) -> Account {
|
||||
pub fn new() -> Account {
|
||||
Account {
|
||||
id,
|
||||
id: None,
|
||||
name: None,
|
||||
provider,
|
||||
provider: None,
|
||||
user_id: None,
|
||||
authorized: None,
|
||||
fields: None,
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -15,8 +15,8 @@ use serde::{Deserialize, Serialize};
|
||||
pub struct Application {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
@@ -31,8 +31,24 @@ pub struct Application {
|
||||
pub capsule_image_url: Option<Option<String>>,
|
||||
#[serde(rename = "library_image_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub library_image_url: Option<Option<String>>,
|
||||
#[serde(rename = "parent_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub parent_id: Option<Option<String>>,
|
||||
#[serde(rename = "slug", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub slug: Option<Option<String>>,
|
||||
#[serde(rename = "visibility", skip_serializing_if = "Option::is_none")]
|
||||
pub visibility: Option<i32>,
|
||||
#[serde(rename = "password", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub password: Option<Option<String>>,
|
||||
#[serde(rename = "primary", skip_serializing_if = "Option::is_none")]
|
||||
pub primary: Option<i32>,
|
||||
#[serde(rename = "user_count", skip_serializing_if = "Option::is_none")]
|
||||
pub user_count: Option<i32>,
|
||||
#[serde(rename = "achievement_count", skip_serializing_if = "Option::is_none")]
|
||||
pub achievement_count: Option<i32>,
|
||||
#[serde(rename = "badge_count", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub badge_count: Option<Option<i32>>,
|
||||
#[serde(rename = "download_count", skip_serializing_if = "Option::is_none")]
|
||||
pub download_count: Option<i32>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -40,10 +56,10 @@ pub struct Application {
|
||||
}
|
||||
|
||||
impl Application {
|
||||
pub fn new(name: Option<String>) -> Application {
|
||||
pub fn new() -> Application {
|
||||
Application {
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
r#type: None,
|
||||
organization_id: None,
|
||||
@@ -51,7 +67,15 @@ impl Application {
|
||||
banner_url: None,
|
||||
capsule_image_url: None,
|
||||
library_image_url: None,
|
||||
parent_id: None,
|
||||
slug: None,
|
||||
visibility: None,
|
||||
password: None,
|
||||
primary: None,
|
||||
user_count: None,
|
||||
achievement_count: None,
|
||||
badge_count: None,
|
||||
download_count: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -15,14 +15,14 @@ use serde::{Deserialize, Serialize};
|
||||
pub struct AuthorizeRequest {
|
||||
#[serde(rename = "response_type", skip_serializing_if = "Option::is_none")]
|
||||
pub response_type: Option<models::ResponseType>,
|
||||
#[serde(rename = "client_id")]
|
||||
pub client_id: String,
|
||||
#[serde(rename = "client_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub client_id: Option<Option<String>>,
|
||||
#[serde(rename = "code_challenge", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub code_challenge: Option<Option<String>>,
|
||||
#[serde(rename = "code_challenge_method", skip_serializing_if = "Option::is_none")]
|
||||
pub code_challenge_method: Option<models::CodeChallengeMethod>,
|
||||
#[serde(rename = "redirect_uri", deserialize_with = "Option::deserialize")]
|
||||
pub redirect_uri: Option<String>,
|
||||
#[serde(rename = "redirect_uri", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub redirect_uri: Option<Option<String>>,
|
||||
#[serde(rename = "scope", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub scope: Option<Option<String>>,
|
||||
#[serde(rename = "state", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -30,13 +30,13 @@ pub struct AuthorizeRequest {
|
||||
}
|
||||
|
||||
impl AuthorizeRequest {
|
||||
pub fn new(client_id: String, redirect_uri: Option<String>) -> AuthorizeRequest {
|
||||
pub fn new() -> AuthorizeRequest {
|
||||
AuthorizeRequest {
|
||||
response_type: None,
|
||||
client_id,
|
||||
client_id: None,
|
||||
code_challenge: None,
|
||||
code_challenge_method: None,
|
||||
redirect_uri,
|
||||
redirect_uri: None,
|
||||
scope: None,
|
||||
state: None,
|
||||
}
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Client {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
pub r#type: Option<models::ClientType>,
|
||||
#[serde(rename = "organization_id", skip_serializing_if = "Option::is_none")]
|
||||
pub organization_id: Option<String>,
|
||||
#[serde(rename = "trusted", skip_serializing_if = "Option::is_none")]
|
||||
pub trusted: Option<bool>,
|
||||
#[serde(rename = "website_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub website_url: Option<Option<String>>,
|
||||
#[serde(rename = "photo_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub photo_url: Option<Option<String>>,
|
||||
#[serde(rename = "background_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub background_url: Option<Option<String>>,
|
||||
#[serde(rename = "redirects", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub redirects: Option<Option<String>>,
|
||||
#[serde(rename = "scopes", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub scopes: Option<Option<String>>,
|
||||
#[serde(rename = "permissions", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub permissions: Option<Option<Vec<String>>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub updated: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl Client {
|
||||
pub fn new(name: Option<String>) -> Client {
|
||||
Client {
|
||||
id: None,
|
||||
name,
|
||||
r#type: None,
|
||||
organization_id: None,
|
||||
trusted: None,
|
||||
website_url: None,
|
||||
photo_url: None,
|
||||
background_url: None,
|
||||
redirects: None,
|
||||
scopes: None,
|
||||
permissions: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct ClientInfo {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
pub r#type: Option<models::ClientType>,
|
||||
#[serde(rename = "photo_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub photo_url: Option<Option<String>>,
|
||||
#[serde(rename = "permissions", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub permissions: Option<Option<Vec<String>>>,
|
||||
}
|
||||
|
||||
impl ClientInfo {
|
||||
pub fn new(name: Option<String>) -> ClientInfo {
|
||||
ClientInfo {
|
||||
id: None,
|
||||
name,
|
||||
r#type: None,
|
||||
photo_url: None,
|
||||
permissions: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
///
|
||||
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
|
||||
pub enum ClientType {
|
||||
#[serde(rename = "web")]
|
||||
Web,
|
||||
#[serde(rename = "desktop")]
|
||||
Desktop,
|
||||
#[serde(rename = "mobile")]
|
||||
Mobile,
|
||||
|
||||
}
|
||||
|
||||
impl std::fmt::Display for ClientType {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||
match self {
|
||||
Self::Web => write!(f, "web"),
|
||||
Self::Desktop => write!(f, "desktop"),
|
||||
Self::Mobile => write!(f, "mobile"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for ClientType {
|
||||
fn default() -> ClientType {
|
||||
Self::Web
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct CodeResponse {
|
||||
#[serde(rename = "code", deserialize_with = "Option::deserialize")]
|
||||
pub code: Option<String>,
|
||||
#[serde(rename = "state", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub state: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl CodeResponse {
|
||||
pub fn new(code: Option<String>) -> CodeResponse {
|
||||
CodeResponse {
|
||||
code,
|
||||
state: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct CreateUser {
|
||||
#[serde(rename = "uuid", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub uuid: Option<Option<uuid::Uuid>>,
|
||||
#[serde(rename = "name")]
|
||||
pub name: String,
|
||||
#[serde(rename = "display_name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub display_name: Option<Option<String>>,
|
||||
#[serde(rename = "email", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub email: Option<Option<String>>,
|
||||
#[serde(rename = "password", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub password: Option<Option<String>>,
|
||||
#[serde(rename = "language", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub language: Option<Option<String>>,
|
||||
#[serde(rename = "timezone", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub timezone: Option<Option<String>>,
|
||||
#[serde(rename = "currency", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub currency: Option<Option<String>>,
|
||||
#[serde(rename = "ip_address", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub ip_address: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl CreateUser {
|
||||
pub fn new(name: String) -> CreateUser {
|
||||
CreateUser {
|
||||
uuid: None,
|
||||
name,
|
||||
display_name: None,
|
||||
email: None,
|
||||
password: None,
|
||||
language: None,
|
||||
timezone: None,
|
||||
currency: None,
|
||||
ip_address: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,10 +13,32 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Game {
|
||||
#[serde(rename = "game_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub game_port: Option<Option<i32>>,
|
||||
#[serde(rename = "query_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub query_port: Option<Option<i32>>,
|
||||
#[serde(rename = "rcon_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub rcon_port: Option<Option<i32>>,
|
||||
#[serde(rename = "server_count", skip_serializing_if = "Option::is_none")]
|
||||
pub server_count: Option<i32>,
|
||||
#[serde(rename = "steam_app_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub steam_app_id: Option<Option<i32>>,
|
||||
#[serde(rename = "steam_server_app_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub steam_server_app_id: Option<Option<i32>>,
|
||||
#[serde(rename = "enable_servers", skip_serializing_if = "Option::is_none")]
|
||||
pub enable_servers: Option<bool>,
|
||||
#[serde(rename = "rust_gamedig_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub rust_gamedig_id: Option<Option<String>>,
|
||||
#[serde(rename = "node_gamedig_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub node_gamedig_id: Option<Option<String>>,
|
||||
#[serde(rename = "server_connect_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub server_connect_url: Option<Option<String>>,
|
||||
#[serde(rename = "server_tags", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub server_tags: Option<Option<String>>,
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
@@ -31,33 +53,46 @@ pub struct Game {
|
||||
pub capsule_image_url: Option<Option<String>>,
|
||||
#[serde(rename = "library_image_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub library_image_url: Option<Option<String>>,
|
||||
#[serde(rename = "parent_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub parent_id: Option<Option<String>>,
|
||||
#[serde(rename = "slug", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub slug: Option<Option<String>>,
|
||||
#[serde(rename = "visibility", skip_serializing_if = "Option::is_none")]
|
||||
pub visibility: Option<i32>,
|
||||
#[serde(rename = "password", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub password: Option<Option<String>>,
|
||||
#[serde(rename = "primary", skip_serializing_if = "Option::is_none")]
|
||||
pub primary: Option<i32>,
|
||||
#[serde(rename = "user_count", skip_serializing_if = "Option::is_none")]
|
||||
pub user_count: Option<i32>,
|
||||
#[serde(rename = "achievement_count", skip_serializing_if = "Option::is_none")]
|
||||
pub achievement_count: Option<i32>,
|
||||
#[serde(rename = "badge_count", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub badge_count: Option<Option<i32>>,
|
||||
#[serde(rename = "download_count", skip_serializing_if = "Option::is_none")]
|
||||
pub download_count: Option<i32>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub updated: Option<Option<String>>,
|
||||
#[serde(rename = "enable_servers", skip_serializing_if = "Option::is_none")]
|
||||
pub enable_servers: Option<bool>,
|
||||
#[serde(rename = "game_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub game_port: Option<Option<i32>>,
|
||||
#[serde(rename = "query_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub query_port: Option<Option<i32>>,
|
||||
#[serde(rename = "rcon_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub rcon_port: Option<Option<i32>>,
|
||||
#[serde(rename = "gamedig_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub gamedig_id: Option<Option<String>>,
|
||||
#[serde(rename = "steam_app_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub steam_app_id: Option<Option<i32>>,
|
||||
#[serde(rename = "steam_server_app_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub steam_server_app_id: Option<Option<i32>>,
|
||||
}
|
||||
|
||||
impl Game {
|
||||
pub fn new(name: Option<String>) -> Game {
|
||||
pub fn new() -> Game {
|
||||
Game {
|
||||
game_port: None,
|
||||
query_port: None,
|
||||
rcon_port: None,
|
||||
server_count: None,
|
||||
steam_app_id: None,
|
||||
steam_server_app_id: None,
|
||||
enable_servers: None,
|
||||
rust_gamedig_id: None,
|
||||
node_gamedig_id: None,
|
||||
server_connect_url: None,
|
||||
server_tags: None,
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
r#type: None,
|
||||
organization_id: None,
|
||||
@@ -65,16 +100,17 @@ impl Game {
|
||||
banner_url: None,
|
||||
capsule_image_url: None,
|
||||
library_image_url: None,
|
||||
parent_id: None,
|
||||
slug: None,
|
||||
visibility: None,
|
||||
password: None,
|
||||
primary: None,
|
||||
user_count: None,
|
||||
achievement_count: None,
|
||||
badge_count: None,
|
||||
download_count: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
enable_servers: None,
|
||||
game_port: None,
|
||||
query_port: None,
|
||||
rcon_port: None,
|
||||
gamedig_id: None,
|
||||
steam_app_id: None,
|
||||
steam_server_app_id: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -15,34 +15,50 @@ use serde::{Deserialize, Serialize};
|
||||
pub struct GameServer {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "owner_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub owner_id: Option<Option<String>>,
|
||||
#[serde(rename = "address", deserialize_with = "Option::deserialize")]
|
||||
pub address: Option<String>,
|
||||
#[serde(rename = "query_port")]
|
||||
pub query_port: i32,
|
||||
#[serde(rename = "address", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub address: Option<Option<String>>,
|
||||
#[serde(rename = "game_port", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub game_port: Option<Option<i32>>,
|
||||
#[serde(rename = "map", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub map: Option<Option<String>>,
|
||||
#[serde(rename = "version", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub version: Option<Option<String>>,
|
||||
#[serde(rename = "query_port", skip_serializing_if = "Option::is_none")]
|
||||
pub query_port: Option<i32>,
|
||||
#[serde(rename = "game_id", skip_serializing_if = "Option::is_none")]
|
||||
pub game_id: Option<String>,
|
||||
#[serde(rename = "game_icon_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub game_icon_url: Option<Option<String>>,
|
||||
#[serde(rename = "version", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub version: Option<Option<String>>,
|
||||
#[serde(rename = "featured", skip_serializing_if = "Option::is_none")]
|
||||
pub featured: Option<bool>,
|
||||
#[serde(rename = "cluster_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub cluster_id: Option<Option<String>>,
|
||||
#[serde(rename = "website_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub website_url: Option<Option<String>>,
|
||||
#[serde(rename = "banner_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub banner_url: Option<Option<String>>,
|
||||
#[serde(rename = "owner_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub owner_id: Option<Option<String>>,
|
||||
#[serde(rename = "uptime", skip_serializing_if = "Option::is_none")]
|
||||
pub uptime: Option<f64>,
|
||||
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
|
||||
pub status: Option<models::ServerStatus>,
|
||||
#[serde(rename = "ping", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub ping: Option<Option<i32>>,
|
||||
#[serde(rename = "map", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub map: Option<Option<String>>,
|
||||
#[serde(rename = "used_slots", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub used_slots: Option<Option<i32>>,
|
||||
#[serde(rename = "max_slots", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub max_slots: Option<Option<i32>>,
|
||||
#[serde(rename = "motd", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub motd: Option<Option<String>>,
|
||||
#[serde(rename = "players", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub players: Option<Option<String>>,
|
||||
#[serde(rename = "last_online", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub last_online: Option<Option<String>>,
|
||||
#[serde(rename = "country", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub country: Option<Option<String>>,
|
||||
#[serde(rename = "steam", skip_serializing_if = "Option::is_none")]
|
||||
@@ -51,6 +67,10 @@ pub struct GameServer {
|
||||
pub discord_server_id: Option<Option<String>>,
|
||||
#[serde(rename = "youtube_video_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub youtube_video_url: Option<Option<String>>,
|
||||
#[serde(rename = "tags", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub tags: Option<Option<String>>,
|
||||
#[serde(rename = "comment_count", skip_serializing_if = "Option::is_none")]
|
||||
pub comment_count: Option<i32>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -58,27 +78,37 @@ pub struct GameServer {
|
||||
}
|
||||
|
||||
impl GameServer {
|
||||
pub fn new(name: Option<String>, address: Option<String>, query_port: i32) -> GameServer {
|
||||
pub fn new() -> GameServer {
|
||||
GameServer {
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
owner_id: None,
|
||||
address,
|
||||
query_port,
|
||||
address: None,
|
||||
game_port: None,
|
||||
map: None,
|
||||
version: None,
|
||||
query_port: None,
|
||||
game_id: None,
|
||||
game_icon_url: None,
|
||||
version: None,
|
||||
featured: None,
|
||||
cluster_id: None,
|
||||
website_url: None,
|
||||
banner_url: None,
|
||||
owner_id: None,
|
||||
uptime: None,
|
||||
status: None,
|
||||
ping: None,
|
||||
map: None,
|
||||
used_slots: None,
|
||||
max_slots: None,
|
||||
motd: None,
|
||||
players: None,
|
||||
last_online: None,
|
||||
country: None,
|
||||
steam: None,
|
||||
discord_server_id: None,
|
||||
youtube_video_url: None,
|
||||
tags: None,
|
||||
comment_count: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -15,8 +15,8 @@ use serde::{Deserialize, Serialize};
|
||||
pub struct GameServerCluster {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "game_id", skip_serializing_if = "Option::is_none")]
|
||||
@@ -44,10 +44,10 @@ pub struct GameServerCluster {
|
||||
}
|
||||
|
||||
impl GameServerCluster {
|
||||
pub fn new(name: Option<String>) -> GameServerCluster {
|
||||
pub fn new() -> GameServerCluster {
|
||||
GameServerCluster {
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
game_id: None,
|
||||
website_url: None,
|
||||
|
||||
@@ -1,48 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct GameServerQuery {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "server_id", skip_serializing_if = "Option::is_none")]
|
||||
pub server_id: Option<String>,
|
||||
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
|
||||
pub status: Option<models::GameServerStatus>,
|
||||
#[serde(rename = "ping", skip_serializing_if = "Option::is_none")]
|
||||
pub ping: Option<i32>,
|
||||
#[serde(rename = "current_players", skip_serializing_if = "Option::is_none")]
|
||||
pub current_players: Option<i32>,
|
||||
#[serde(rename = "max_players", skip_serializing_if = "Option::is_none")]
|
||||
pub max_players: Option<i32>,
|
||||
#[serde(rename = "motd", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub motd: Option<Option<String>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
}
|
||||
|
||||
impl GameServerQuery {
|
||||
pub fn new() -> GameServerQuery {
|
||||
GameServerQuery {
|
||||
id: None,
|
||||
server_id: None,
|
||||
status: None,
|
||||
ping: None,
|
||||
current_players: None,
|
||||
max_players: None,
|
||||
motd: None,
|
||||
created: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -17,8 +17,8 @@ pub struct Group {
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "uuid", skip_serializing_if = "Option::is_none")]
|
||||
pub uuid: Option<uuid::Uuid>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "tag", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub tag: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -48,11 +48,11 @@ pub struct Group {
|
||||
}
|
||||
|
||||
impl Group {
|
||||
pub fn new(name: Option<String>) -> Group {
|
||||
pub fn new() -> Group {
|
||||
Group {
|
||||
id: None,
|
||||
uuid: None,
|
||||
name,
|
||||
name: None,
|
||||
tag: None,
|
||||
description: None,
|
||||
r#type: None,
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -12,9 +12,9 @@ use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct GroupApplication {
|
||||
#[serde(rename = "group_id")]
|
||||
pub group_id: String,
|
||||
pub struct GroupGame {
|
||||
#[serde(rename = "group_id", skip_serializing_if = "Option::is_none")]
|
||||
pub group_id: Option<String>,
|
||||
#[serde(rename = "group", skip_serializing_if = "Option::is_none")]
|
||||
pub group: Option<Box<models::Group>>,
|
||||
#[serde(rename = "application_id", skip_serializing_if = "Option::is_none")]
|
||||
@@ -29,10 +29,10 @@ pub struct GroupApplication {
|
||||
pub last_used: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl GroupApplication {
|
||||
pub fn new(group_id: String) -> GroupApplication {
|
||||
GroupApplication {
|
||||
group_id,
|
||||
impl GroupGame {
|
||||
pub fn new() -> GroupGame {
|
||||
GroupGame {
|
||||
group_id: None,
|
||||
group: None,
|
||||
application_id: None,
|
||||
application: None,
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,14 +13,14 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct HashViewModel {
|
||||
#[serde(rename = "value", deserialize_with = "Option::deserialize")]
|
||||
pub value: Option<String>,
|
||||
#[serde(rename = "value", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub value: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl HashViewModel {
|
||||
pub fn new(value: Option<String>) -> HashViewModel {
|
||||
pub fn new() -> HashViewModel {
|
||||
HashViewModel {
|
||||
value,
|
||||
value: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,17 +13,17 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct IntrospectRequest {
|
||||
#[serde(rename = "token", deserialize_with = "Option::deserialize")]
|
||||
pub token: Option<String>,
|
||||
#[serde(rename = "token_type_hint")]
|
||||
pub token_type_hint: models::TokenHintType,
|
||||
#[serde(rename = "token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub token: Option<Option<String>>,
|
||||
#[serde(rename = "token_type_hint", skip_serializing_if = "Option::is_none")]
|
||||
pub token_type_hint: Option<models::TokenHintType>,
|
||||
}
|
||||
|
||||
impl IntrospectRequest {
|
||||
pub fn new(token: Option<String>, token_type_hint: models::TokenHintType) -> IntrospectRequest {
|
||||
pub fn new() -> IntrospectRequest {
|
||||
IntrospectRequest {
|
||||
token,
|
||||
token_type_hint,
|
||||
token: None,
|
||||
token_type_hint: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,60 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct IntrospectResponse {
|
||||
#[serde(rename = "jti", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub jti: Option<Option<String>>,
|
||||
#[serde(rename = "active", skip_serializing_if = "Option::is_none")]
|
||||
pub active: Option<bool>,
|
||||
#[serde(rename = "token_type", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub token_type: Option<Option<String>>,
|
||||
#[serde(rename = "client_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub client_id: Option<Option<String>>,
|
||||
#[serde(rename = "sub", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub sub: Option<Option<String>>,
|
||||
#[serde(rename = "username", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub username: Option<Option<String>>,
|
||||
#[serde(rename = "scope", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub scope: Option<Option<String>>,
|
||||
#[serde(rename = "iss", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub iss: Option<Option<String>>,
|
||||
#[serde(rename = "aud", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub aud: Option<Option<String>>,
|
||||
#[serde(rename = "iat", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub iat: Option<Option<i64>>,
|
||||
#[serde(rename = "exp", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub exp: Option<Option<i64>>,
|
||||
#[serde(rename = "nbf", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub nbf: Option<Option<i64>>,
|
||||
}
|
||||
|
||||
impl IntrospectResponse {
|
||||
pub fn new() -> IntrospectResponse {
|
||||
IntrospectResponse {
|
||||
jti: None,
|
||||
active: None,
|
||||
token_type: None,
|
||||
client_id: None,
|
||||
sub: None,
|
||||
username: None,
|
||||
scope: None,
|
||||
iss: None,
|
||||
aud: None,
|
||||
iat: None,
|
||||
exp: None,
|
||||
nbf: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -21,8 +21,6 @@ pub struct IpAddress {
|
||||
pub network: Option<Option<String>>,
|
||||
#[serde(rename = "reserved", skip_serializing_if = "Option::is_none")]
|
||||
pub reserved: Option<bool>,
|
||||
#[serde(rename = "banned", skip_serializing_if = "Option::is_none")]
|
||||
pub banned: Option<bool>,
|
||||
#[serde(rename = "asn", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub asn: Option<Option<String>>,
|
||||
#[serde(rename = "isp", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -31,8 +29,8 @@ pub struct IpAddress {
|
||||
pub continent: Option<Option<String>>,
|
||||
#[serde(rename = "country", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub country: Option<Option<String>>,
|
||||
#[serde(rename = "province", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub province: Option<Option<String>>,
|
||||
#[serde(rename = "region", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub region: Option<Option<String>>,
|
||||
#[serde(rename = "city", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub city: Option<Option<String>>,
|
||||
#[serde(rename = "postal_code", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -60,12 +58,11 @@ impl IpAddress {
|
||||
version: None,
|
||||
network: None,
|
||||
reserved: None,
|
||||
banned: None,
|
||||
asn: None,
|
||||
isp: None,
|
||||
continent: None,
|
||||
country: None,
|
||||
province: None,
|
||||
region: None,
|
||||
city: None,
|
||||
postal_code: None,
|
||||
calling_code: None,
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
30
src/models/login_request.rs
Normal file
30
src/models/login_request.rs
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct LoginRequest {
|
||||
#[serde(rename = "login", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub login: Option<Option<String>>,
|
||||
#[serde(rename = "password", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub password: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl LoginRequest {
|
||||
pub fn new() -> LoginRequest {
|
||||
LoginRequest {
|
||||
login: None,
|
||||
password: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
36
src/models/login_response.rs
Normal file
36
src/models/login_response.rs
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct LoginResponse {
|
||||
#[serde(rename = "user", skip_serializing_if = "Option::is_none")]
|
||||
pub user: Option<Box<models::UserInfo>>,
|
||||
#[serde(rename = "access_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub access_token: Option<Option<String>>,
|
||||
#[serde(rename = "refresh_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub refresh_token: Option<Option<String>>,
|
||||
#[serde(rename = "expires_in", skip_serializing_if = "Option::is_none")]
|
||||
pub expires_in: Option<i64>,
|
||||
}
|
||||
|
||||
impl LoginResponse {
|
||||
pub fn new() -> LoginResponse {
|
||||
LoginResponse {
|
||||
user: None,
|
||||
access_token: None,
|
||||
refresh_token: None,
|
||||
expires_in: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,18 +6,8 @@ pub mod application_type;
|
||||
pub use self::application_type::ApplicationType;
|
||||
pub mod authorize_request;
|
||||
pub use self::authorize_request::AuthorizeRequest;
|
||||
pub mod client;
|
||||
pub use self::client::Client;
|
||||
pub mod client_info;
|
||||
pub use self::client_info::ClientInfo;
|
||||
pub mod client_type;
|
||||
pub use self::client_type::ClientType;
|
||||
pub mod code_challenge_method;
|
||||
pub use self::code_challenge_method::CodeChallengeMethod;
|
||||
pub mod code_response;
|
||||
pub use self::code_response::CodeResponse;
|
||||
pub mod create_user;
|
||||
pub use self::create_user::CreateUser;
|
||||
pub mod crypto_view_model;
|
||||
pub use self::crypto_view_model::CryptoViewModel;
|
||||
pub mod game;
|
||||
@@ -26,16 +16,12 @@ pub mod game_server;
|
||||
pub use self::game_server::GameServer;
|
||||
pub mod game_server_cluster;
|
||||
pub use self::game_server_cluster::GameServerCluster;
|
||||
pub mod game_server_query;
|
||||
pub use self::game_server_query::GameServerQuery;
|
||||
pub mod game_server_status;
|
||||
pub use self::game_server_status::GameServerStatus;
|
||||
pub mod grant_type;
|
||||
pub use self::grant_type::GrantType;
|
||||
pub mod group;
|
||||
pub use self::group::Group;
|
||||
pub mod group_application;
|
||||
pub use self::group_application::GroupApplication;
|
||||
pub mod group_game;
|
||||
pub use self::group_game::GroupGame;
|
||||
pub mod group_member;
|
||||
pub use self::group_member::GroupMember;
|
||||
pub mod group_rank;
|
||||
@@ -44,8 +30,6 @@ pub mod hash_view_model;
|
||||
pub use self::hash_view_model::HashViewModel;
|
||||
pub mod introspect_request;
|
||||
pub use self::introspect_request::IntrospectRequest;
|
||||
pub mod introspect_response;
|
||||
pub use self::introspect_response::IntrospectResponse;
|
||||
pub mod ip_address;
|
||||
pub use self::ip_address::IpAddress;
|
||||
pub mod leaderboard_item;
|
||||
@@ -54,34 +38,36 @@ pub mod leaderboard_order;
|
||||
pub use self::leaderboard_order::LeaderboardOrder;
|
||||
pub mod login_provider;
|
||||
pub use self::login_provider::LoginProvider;
|
||||
pub mod login_request;
|
||||
pub use self::login_request::LoginRequest;
|
||||
pub mod login_response;
|
||||
pub use self::login_response::LoginResponse;
|
||||
pub mod package;
|
||||
pub use self::package::Package;
|
||||
pub mod package_release;
|
||||
pub use self::package_release::PackageRelease;
|
||||
pub mod product;
|
||||
pub use self::product::Product;
|
||||
pub mod product_price;
|
||||
pub use self::product_price::ProductPrice;
|
||||
pub mod product_type;
|
||||
pub use self::product_type::ProductType;
|
||||
pub mod profile;
|
||||
pub use self::profile::Profile;
|
||||
pub mod profile_game;
|
||||
pub use self::profile_game::ProfileGame;
|
||||
pub mod profile_group;
|
||||
pub use self::profile_group::ProfileGroup;
|
||||
pub mod refresh_request;
|
||||
pub use self::refresh_request::RefreshRequest;
|
||||
pub mod register_request;
|
||||
pub use self::register_request::RegisterRequest;
|
||||
pub mod response_type;
|
||||
pub use self::response_type::ResponseType;
|
||||
pub mod revoke_request;
|
||||
pub use self::revoke_request::RevokeRequest;
|
||||
pub mod search;
|
||||
pub use self::search::Search;
|
||||
pub mod search_request;
|
||||
pub use self::search_request::SearchRequest;
|
||||
pub mod search_type;
|
||||
pub use self::search_type::SearchType;
|
||||
pub mod server_metrics;
|
||||
pub use self::server_metrics::ServerMetrics;
|
||||
pub mod storage_file;
|
||||
pub use self::storage_file::StorageFile;
|
||||
pub mod server_status;
|
||||
pub use self::server_status::ServerStatus;
|
||||
pub mod subscription;
|
||||
pub use self::subscription::Subscription;
|
||||
pub mod token_hint_type;
|
||||
pub use self::token_hint_type::TokenHintType;
|
||||
pub mod token_request;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -15,24 +15,24 @@ use serde::{Deserialize, Serialize};
|
||||
pub struct Package {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "image_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub image_url: Option<Option<String>>,
|
||||
#[serde(rename = "author_id", skip_serializing_if = "Option::is_none")]
|
||||
pub author_id: Option<String>,
|
||||
#[serde(rename = "image_url", deserialize_with = "Option::deserialize")]
|
||||
pub image_url: Option<String>,
|
||||
#[serde(rename = "application_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub application_id: Option<Option<String>>,
|
||||
#[serde(rename = "category_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub category_id: Option<Option<String>>,
|
||||
#[serde(rename = "version", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub version: Option<Option<String>>,
|
||||
#[serde(rename = "file_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub file_url: Option<Option<String>>,
|
||||
#[serde(rename = "raw_size", skip_serializing_if = "Option::is_none")]
|
||||
pub raw_size: Option<f64>,
|
||||
#[serde(rename = "download_count", skip_serializing_if = "Option::is_none")]
|
||||
pub download_count: Option<i32>,
|
||||
#[serde(rename = "last_download", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub last_download: Option<Option<String>>,
|
||||
#[serde(rename = "releases", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub releases: Option<Option<Vec<models::PackageRelease>>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -40,18 +40,18 @@ pub struct Package {
|
||||
}
|
||||
|
||||
impl Package {
|
||||
pub fn new(name: Option<String>, image_url: Option<String>) -> Package {
|
||||
pub fn new() -> Package {
|
||||
Package {
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
image_url: None,
|
||||
author_id: None,
|
||||
image_url,
|
||||
application_id: None,
|
||||
category_id: None,
|
||||
version: None,
|
||||
file_url: None,
|
||||
raw_size: None,
|
||||
download_count: None,
|
||||
last_download: None,
|
||||
releases: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct PackageRelease {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "version", deserialize_with = "Option::deserialize")]
|
||||
pub version: Option<String>,
|
||||
#[serde(rename = "package_id", skip_serializing_if = "Option::is_none")]
|
||||
pub package_id: Option<String>,
|
||||
#[serde(rename = "notes", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub notes: Option<Option<String>>,
|
||||
#[serde(rename = "files", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub files: Option<Option<Vec<models::StorageFile>>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub updated: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl PackageRelease {
|
||||
pub fn new(version: Option<String>) -> PackageRelease {
|
||||
PackageRelease {
|
||||
id: None,
|
||||
version,
|
||||
package_id: None,
|
||||
notes: None,
|
||||
files: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct ProductPrice {
|
||||
#[serde(rename = "currency", deserialize_with = "Option::deserialize")]
|
||||
pub currency: Option<String>,
|
||||
#[serde(rename = "amount", skip_serializing_if = "Option::is_none")]
|
||||
pub amount: Option<f64>,
|
||||
#[serde(rename = "renewal", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub renewal: Option<Option<f64>>,
|
||||
}
|
||||
|
||||
impl ProductPrice {
|
||||
pub fn new(currency: Option<String>) -> ProductPrice {
|
||||
ProductPrice {
|
||||
currency,
|
||||
amount: None,
|
||||
renewal: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
///
|
||||
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
|
||||
pub enum ProductType {
|
||||
#[serde(rename = "product")]
|
||||
Product,
|
||||
#[serde(rename = "subscription")]
|
||||
Subscription,
|
||||
|
||||
}
|
||||
|
||||
impl std::fmt::Display for ProductType {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||
match self {
|
||||
Self::Product => write!(f, "product"),
|
||||
Self::Subscription => write!(f, "subscription"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for ProductType {
|
||||
fn default() -> ProductType {
|
||||
Self::Product
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
27
src/models/refresh_request.rs
Normal file
27
src/models/refresh_request.rs
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct RefreshRequest {
|
||||
#[serde(rename = "refresh_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub refresh_token: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl RefreshRequest {
|
||||
pub fn new() -> RefreshRequest {
|
||||
RefreshRequest {
|
||||
refresh_token: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
36
src/models/register_request.rs
Normal file
36
src/models/register_request.rs
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct RegisterRequest {
|
||||
#[serde(rename = "uuid", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub uuid: Option<Option<uuid::Uuid>>,
|
||||
#[serde(rename = "name")]
|
||||
pub name: String,
|
||||
#[serde(rename = "email", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub email: Option<Option<String>>,
|
||||
#[serde(rename = "password")]
|
||||
pub password: String,
|
||||
}
|
||||
|
||||
impl RegisterRequest {
|
||||
pub fn new(name: String, password: String) -> RegisterRequest {
|
||||
RegisterRequest {
|
||||
uuid: None,
|
||||
name,
|
||||
email: None,
|
||||
password,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,17 +13,17 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct RevokeRequest {
|
||||
#[serde(rename = "token", deserialize_with = "Option::deserialize")]
|
||||
pub token: Option<String>,
|
||||
#[serde(rename = "token_type_hint")]
|
||||
pub token_type_hint: models::TokenHintType,
|
||||
#[serde(rename = "token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub token: Option<Option<String>>,
|
||||
#[serde(rename = "token_type_hint", skip_serializing_if = "Option::is_none")]
|
||||
pub token_type_hint: Option<models::TokenHintType>,
|
||||
}
|
||||
|
||||
impl RevokeRequest {
|
||||
pub fn new(token: Option<String>, token_type_hint: models::TokenHintType) -> RevokeRequest {
|
||||
pub fn new() -> RevokeRequest {
|
||||
RevokeRequest {
|
||||
token,
|
||||
token_type_hint,
|
||||
token: None,
|
||||
token_type_hint: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -12,22 +12,22 @@ use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Search {
|
||||
#[serde(rename = "type")]
|
||||
pub r#type: models::SearchType,
|
||||
#[serde(rename = "query", deserialize_with = "Option::deserialize")]
|
||||
pub query: Option<String>,
|
||||
pub struct SearchRequest {
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
pub r#type: Option<models::SearchType>,
|
||||
#[serde(rename = "query", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub query: Option<Option<String>>,
|
||||
#[serde(rename = "page", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub page: Option<Option<i32>>,
|
||||
#[serde(rename = "game_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub game_id: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl Search {
|
||||
pub fn new(r#type: models::SearchType, query: Option<String>) -> Search {
|
||||
Search {
|
||||
r#type,
|
||||
query,
|
||||
impl SearchRequest {
|
||||
pub fn new() -> SearchRequest {
|
||||
SearchRequest {
|
||||
r#type: None,
|
||||
query: None,
|
||||
page: None,
|
||||
game_id: None,
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -18,10 +18,10 @@ pub enum SearchType {
|
||||
User,
|
||||
#[serde(rename = "group")]
|
||||
Group,
|
||||
#[serde(rename = "game_server")]
|
||||
GameServer,
|
||||
#[serde(rename = "game_server_cluster")]
|
||||
GameServerCluster,
|
||||
#[serde(rename = "server")]
|
||||
Server,
|
||||
#[serde(rename = "cluster")]
|
||||
Cluster,
|
||||
|
||||
}
|
||||
|
||||
@@ -30,8 +30,8 @@ impl std::fmt::Display for SearchType {
|
||||
match self {
|
||||
Self::User => write!(f, "user"),
|
||||
Self::Group => write!(f, "group"),
|
||||
Self::GameServer => write!(f, "game_server"),
|
||||
Self::GameServerCluster => write!(f, "game_server_cluster"),
|
||||
Self::Server => write!(f, "server"),
|
||||
Self::Cluster => write!(f, "cluster"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,7 +13,7 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
///
|
||||
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
|
||||
pub enum GameServerStatus {
|
||||
pub enum ServerStatus {
|
||||
#[serde(rename = "unknown")]
|
||||
Unknown,
|
||||
#[serde(rename = "offline")]
|
||||
@@ -23,7 +23,7 @@ pub enum GameServerStatus {
|
||||
|
||||
}
|
||||
|
||||
impl std::fmt::Display for GameServerStatus {
|
||||
impl std::fmt::Display for ServerStatus {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||
match self {
|
||||
Self::Unknown => write!(f, "unknown"),
|
||||
@@ -33,8 +33,8 @@ impl std::fmt::Display for GameServerStatus {
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for GameServerStatus {
|
||||
fn default() -> GameServerStatus {
|
||||
impl Default for ServerStatus {
|
||||
fn default() -> ServerStatus {
|
||||
Self::Unknown
|
||||
}
|
||||
}
|
||||
@@ -1,51 +0,0 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct StorageFile {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "content_type", deserialize_with = "Option::deserialize")]
|
||||
pub content_type: Option<String>,
|
||||
#[serde(rename = "url", deserialize_with = "Option::deserialize")]
|
||||
pub url: Option<String>,
|
||||
#[serde(rename = "size", skip_serializing_if = "Option::is_none")]
|
||||
pub size: Option<i64>,
|
||||
#[serde(rename = "hash", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub hash: Option<Option<String>>,
|
||||
#[serde(rename = "etag", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub etag: Option<Option<String>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub updated: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl StorageFile {
|
||||
pub fn new(name: Option<String>, content_type: Option<String>, url: Option<String>) -> StorageFile {
|
||||
StorageFile {
|
||||
id: None,
|
||||
name,
|
||||
content_type,
|
||||
url,
|
||||
size: None,
|
||||
hash: None,
|
||||
etag: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -12,39 +12,30 @@ use crate::models;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Product {
|
||||
pub struct Subscription {
|
||||
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub description: Option<Option<String>>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
pub r#type: Option<models::ProductType>,
|
||||
#[serde(rename = "slug", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub slug: Option<Option<String>>,
|
||||
#[serde(rename = "image_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub image_url: Option<Option<String>>,
|
||||
#[serde(rename = "is_physical", skip_serializing_if = "Option::is_none")]
|
||||
pub is_physical: Option<bool>,
|
||||
#[serde(rename = "prices", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub prices: Option<Option<Vec<models::ProductPrice>>>,
|
||||
pub prices: Option<Option<std::collections::HashMap<String, f64>>>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub updated: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl Product {
|
||||
pub fn new(name: Option<String>) -> Product {
|
||||
Product {
|
||||
impl Subscription {
|
||||
pub fn new() -> Subscription {
|
||||
Subscription {
|
||||
id: None,
|
||||
name,
|
||||
name: None,
|
||||
description: None,
|
||||
r#type: None,
|
||||
slug: None,
|
||||
image_url: None,
|
||||
is_physical: None,
|
||||
prices: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -23,6 +23,8 @@ pub struct TokenRequest {
|
||||
pub password: Option<Option<String>>,
|
||||
#[serde(rename = "refresh_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub refresh_token: Option<Option<String>>,
|
||||
#[serde(rename = "client_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub client_id: Option<Option<String>>,
|
||||
#[serde(rename = "redirect_uri", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub redirect_uri: Option<Option<String>>,
|
||||
#[serde(rename = "code_verifier", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -37,6 +39,7 @@ impl TokenRequest {
|
||||
username: None,
|
||||
password: None,
|
||||
refresh_token: None,
|
||||
client_id: None,
|
||||
redirect_uri: None,
|
||||
code_verifier: None,
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,10 +13,10 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct TokenResponse {
|
||||
#[serde(rename = "token_type")]
|
||||
pub token_type: models::TokenType,
|
||||
#[serde(rename = "access_token", deserialize_with = "Option::deserialize")]
|
||||
pub access_token: Option<String>,
|
||||
#[serde(rename = "token_type", skip_serializing_if = "Option::is_none")]
|
||||
pub token_type: Option<models::TokenType>,
|
||||
#[serde(rename = "access_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub access_token: Option<Option<String>>,
|
||||
#[serde(rename = "refresh_token", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub refresh_token: Option<Option<String>>,
|
||||
#[serde(rename = "scope", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -28,10 +28,10 @@ pub struct TokenResponse {
|
||||
}
|
||||
|
||||
impl TokenResponse {
|
||||
pub fn new(token_type: models::TokenType, access_token: Option<String>) -> TokenResponse {
|
||||
pub fn new() -> TokenResponse {
|
||||
TokenResponse {
|
||||
token_type,
|
||||
access_token,
|
||||
token_type: None,
|
||||
access_token: None,
|
||||
refresh_token: None,
|
||||
scope: None,
|
||||
state: None,
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -13,16 +13,16 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct UpdateProfile {
|
||||
#[serde(rename = "display_name", deserialize_with = "Option::deserialize")]
|
||||
pub display_name: Option<String>,
|
||||
#[serde(rename = "display_name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub display_name: Option<Option<String>>,
|
||||
#[serde(rename = "biography", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub biography: Option<Option<String>>,
|
||||
}
|
||||
|
||||
impl UpdateProfile {
|
||||
pub fn new(display_name: Option<String>) -> UpdateProfile {
|
||||
pub fn new() -> UpdateProfile {
|
||||
UpdateProfile {
|
||||
display_name,
|
||||
display_name: None,
|
||||
biography: None,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
@@ -17,16 +17,32 @@ pub struct UserInfo {
|
||||
pub id: Option<String>,
|
||||
#[serde(rename = "uuid", skip_serializing_if = "Option::is_none")]
|
||||
pub uuid: Option<uuid::Uuid>,
|
||||
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
|
||||
pub name: Option<String>,
|
||||
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<Option<String>>,
|
||||
#[serde(rename = "display_name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub display_name: Option<Option<String>>,
|
||||
#[serde(rename = "email", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub email: Option<Option<String>>,
|
||||
#[serde(rename = "email_verified", skip_serializing_if = "Option::is_none")]
|
||||
pub email_verified: Option<bool>,
|
||||
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
||||
pub r#type: Option<models::UserType>,
|
||||
#[serde(rename = "flags", skip_serializing_if = "Option::is_none")]
|
||||
pub flags: Option<String>,
|
||||
#[serde(rename = "permissions", skip_serializing_if = "Option::is_none")]
|
||||
pub permissions: Option<String>,
|
||||
#[serde(rename = "verified", skip_serializing_if = "Option::is_none")]
|
||||
pub verified: Option<bool>,
|
||||
#[serde(rename = "level", skip_serializing_if = "Option::is_none")]
|
||||
pub level: Option<i32>,
|
||||
#[serde(rename = "experience", skip_serializing_if = "Option::is_none")]
|
||||
pub experience: Option<f64>,
|
||||
#[serde(rename = "public_birthday", skip_serializing_if = "Option::is_none")]
|
||||
pub public_birthday: Option<bool>,
|
||||
#[serde(rename = "birthday", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub birthday: Option<Option<String>>,
|
||||
#[serde(rename = "points", skip_serializing_if = "Option::is_none")]
|
||||
pub points: Option<f64>,
|
||||
#[serde(rename = "location", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub location: Option<Option<String>>,
|
||||
#[serde(rename = "language", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub language: Option<Option<String>>,
|
||||
#[serde(rename = "timezone", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -35,8 +51,14 @@ pub struct UserInfo {
|
||||
pub currency: Option<Option<String>>,
|
||||
#[serde(rename = "photo_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub photo_url: Option<Option<String>>,
|
||||
#[serde(rename = "permissions", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub permissions: Option<Option<Vec<String>>>,
|
||||
#[serde(rename = "banner_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub banner_url: Option<Option<String>>,
|
||||
#[serde(rename = "last_online", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub last_online: Option<Option<String>>,
|
||||
#[serde(rename = "biography", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
pub biography: Option<Option<String>>,
|
||||
#[serde(rename = "view_count", skip_serializing_if = "Option::is_none")]
|
||||
pub view_count: Option<i32>,
|
||||
#[serde(rename = "created", skip_serializing_if = "Option::is_none")]
|
||||
pub created: Option<String>,
|
||||
#[serde(rename = "updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
||||
@@ -44,20 +66,31 @@ pub struct UserInfo {
|
||||
}
|
||||
|
||||
impl UserInfo {
|
||||
pub fn new(name: Option<String>) -> UserInfo {
|
||||
pub fn new() -> UserInfo {
|
||||
UserInfo {
|
||||
id: None,
|
||||
uuid: None,
|
||||
name,
|
||||
name: None,
|
||||
display_name: None,
|
||||
email: None,
|
||||
email_verified: None,
|
||||
r#type: None,
|
||||
flags: None,
|
||||
permissions: None,
|
||||
verified: None,
|
||||
level: None,
|
||||
experience: None,
|
||||
public_birthday: None,
|
||||
birthday: None,
|
||||
points: None,
|
||||
location: None,
|
||||
language: None,
|
||||
timezone: None,
|
||||
currency: None,
|
||||
photo_url: None,
|
||||
permissions: None,
|
||||
banner_url: None,
|
||||
last_online: None,
|
||||
biography: None,
|
||||
view_count: None,
|
||||
created: None,
|
||||
updated: None,
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Tribufu API
|
||||
*
|
||||
* API to access Tribufu services.
|
||||
* REST API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
* Generated by: https://openapi-generator.tech
|
||||
*/
|
||||
|
||||
21
src/native/Cargo.toml
Normal file
21
src/native/Cargo.toml
Normal file
@@ -0,0 +1,21 @@
|
||||
[package]
|
||||
name = "tribufu-sdk"
|
||||
version = "0.0.0"
|
||||
description = "Tribufu Native"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "UNLICENSED"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_sdk"
|
||||
crate-type = ["rlib", "cdylib", "staticlib"]
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tribufu = { path = "../../" }
|
||||
futures = "0.3.31"
|
||||
libc = "0.2.172"
|
||||
once_cell = "1.19.0"
|
||||
tokio = { version = "1.45.1", features = ["full"] }
|
||||
88
src/native/api.rs
Normal file
88
src/native/api.rs
Normal file
@@ -0,0 +1,88 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: UNLICENSED
|
||||
|
||||
use crate::models::{TribufuApiCallbackContext, TribufuApiGetUserInfoCallback};
|
||||
use futures::lock::Mutex;
|
||||
use libc::{c_char, c_void};
|
||||
use once_cell::sync::Lazy;
|
||||
use std::ffi::CString;
|
||||
use std::ptr;
|
||||
use tokio::runtime::Runtime;
|
||||
use tribufu::apis::tribufu_generated_api::TribufuGeneratedApiClient;
|
||||
use tribufu::TribufuApi;
|
||||
|
||||
static INSTANCE: Lazy<Mutex<Option<TribufuGeneratedApiClient>>> = Lazy::new(|| Mutex::new(None));
|
||||
static RUNTIME: Lazy<Runtime> = Lazy::new(|| Runtime::new().unwrap());
|
||||
|
||||
/// Gets the version of the Tribufu API.
|
||||
#[no_mangle]
|
||||
pub extern "C" fn tribufu_api_get_version() -> *const c_char {
|
||||
CString::new(TribufuApi::get_version()).unwrap().into_raw()
|
||||
}
|
||||
|
||||
/// Gets the user agent string for the Tribufu API.
|
||||
#[no_mangle]
|
||||
pub extern "C" fn tribufu_api_get_user_agent() -> *const c_char {
|
||||
CString::new(TribufuApi::get_user_agent())
|
||||
.unwrap()
|
||||
.into_raw()
|
||||
}
|
||||
|
||||
/// Initialize the Tribufu API instance.
|
||||
///
|
||||
/// This must be called before any other API functions.
|
||||
#[no_mangle]
|
||||
pub extern "C" fn tribufu_api_initialize() -> bool {
|
||||
let api = TribufuApi::from_env_or_default(None);
|
||||
|
||||
if INSTANCE.try_lock().is_none() {
|
||||
return false;
|
||||
}
|
||||
|
||||
let mut instance = INSTANCE.try_lock().unwrap();
|
||||
*instance = Some(api);
|
||||
|
||||
true
|
||||
}
|
||||
|
||||
/// Shutdown the Tribufu API instance.
|
||||
///
|
||||
/// This must be called when the API is no longer needed.
|
||||
#[no_mangle]
|
||||
pub extern "C" fn tribufu_api_shutdown() {
|
||||
if INSTANCE.try_lock().is_none() {
|
||||
return;
|
||||
}
|
||||
|
||||
let mut instance = INSTANCE.try_lock().unwrap();
|
||||
*instance = None;
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
#[allow(unused_variables)]
|
||||
pub extern "C" fn tribufu_api_get_user_info(
|
||||
context: *mut c_void,
|
||||
callback: TribufuApiGetUserInfoCallback,
|
||||
) {
|
||||
let context = TribufuApiCallbackContext(context);
|
||||
|
||||
RUNTIME.spawn(async move {
|
||||
let mut instance = INSTANCE.lock().await;
|
||||
if instance.is_none() {
|
||||
callback(context.as_ptr(), ptr::null());
|
||||
return;
|
||||
}
|
||||
|
||||
let api = instance.as_mut();
|
||||
if api.is_none() {
|
||||
callback(context.as_ptr(), ptr::null());
|
||||
return;
|
||||
}
|
||||
|
||||
let api = api.unwrap();
|
||||
|
||||
// TODO: Implement logic here
|
||||
|
||||
callback(context.as_ptr(), ptr::null());
|
||||
});
|
||||
}
|
||||
8
src/native/lib.rs
Normal file
8
src/native/lib.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: UNLICENSED
|
||||
|
||||
#![allow(dead_code)]
|
||||
|
||||
pub mod api;
|
||||
pub mod mem;
|
||||
pub mod models;
|
||||
16
src/native/mem.rs
Normal file
16
src/native/mem.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: UNLICENSED
|
||||
|
||||
use std::ffi::CString;
|
||||
use std::os::raw::c_char;
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn tribufu_free_string(ptr: *mut c_char) {
|
||||
if ptr.is_null() {
|
||||
return;
|
||||
}
|
||||
|
||||
unsafe {
|
||||
let _ = CString::from_raw(ptr);
|
||||
}
|
||||
}
|
||||
19
src/native/models.rs
Normal file
19
src/native/models.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
use libc::c_void;
|
||||
|
||||
pub struct TribufuApiCallbackContext(pub(crate) *mut c_void);
|
||||
|
||||
impl TribufuApiCallbackContext {
|
||||
pub(crate) fn as_ptr(&self) -> *mut c_void {
|
||||
self.0
|
||||
}
|
||||
}
|
||||
|
||||
unsafe impl Send for TribufuApiCallbackContext {}
|
||||
unsafe impl Sync for TribufuApiCallbackContext {}
|
||||
|
||||
pub type TribufuApiGetUserInfoCallbackData = c_void;
|
||||
pub type TribufuApiGetUserInfoCallback =
|
||||
extern "C" fn(*mut c_void, *const TribufuApiGetUserInfoCallbackData);
|
||||
@@ -1,12 +1,11 @@
|
||||
[package]
|
||||
name = "tribufu-platform"
|
||||
version = "1.3.0"
|
||||
version = "0.0.5"
|
||||
description = "Tribufu Platform"
|
||||
repository = "https://github.com/tribufu/tribufu-rust"
|
||||
authors = ["Tribufu <contact@tribufu.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
name = "tribufu_platform"
|
||||
@@ -14,7 +13,7 @@ crate-type = ["rlib"]
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tribufu-error = { version = "1.3.0", path = "../error" }
|
||||
tribufu-error = { version = "0.0.5", path = "../error" }
|
||||
dunce = "1.0.4"
|
||||
|
||||
[target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies]
|
||||
|
||||
27
vendor/premake-core/LICENSE.txt
vendored
Normal file
27
vendor/premake-core/LICENSE.txt
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
Copyright (c) 2003-2022 Jason Perkins and individual contributors.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Premake nor the names of its contributors may be
|
||||
used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
BIN
vendor/premake-core/linux/libluasocket.so
vendored
Normal file
BIN
vendor/premake-core/linux/libluasocket.so
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/linux/premake5
vendored
Normal file
BIN
vendor/premake-core/linux/premake5
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/mac/libluasocket.dylib
vendored
Normal file
BIN
vendor/premake-core/mac/libluasocket.dylib
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/mac/premake5
vendored
Normal file
BIN
vendor/premake-core/mac/premake5
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/luasocket.dll
vendored
Normal file
BIN
vendor/premake-core/windows/luasocket.dll
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/luasocket.exp
vendored
Normal file
BIN
vendor/premake-core/windows/luasocket.exp
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/luasocket.lib
vendored
Normal file
BIN
vendor/premake-core/windows/luasocket.lib
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/luasocket.pdb
vendored
Normal file
BIN
vendor/premake-core/windows/luasocket.pdb
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/premake5.exe
vendored
Normal file
BIN
vendor/premake-core/windows/premake5.exe
vendored
Normal file
Binary file not shown.
BIN
vendor/premake-core/windows/premake5.pdb
vendored
Normal file
BIN
vendor/premake-core/windows/premake5.pdb
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user