-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,007 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
|
||
|
||
import 'package:json_annotation/json_annotation.dart'; | ||
|
||
part 'SteamGameDataResult.g.dart'; | ||
|
||
@JsonSerializable() | ||
class SteamGameDataResult { | ||
bool success = false; | ||
SteamGameData data = SteamGameData(); | ||
|
||
SteamGameDataResult(); | ||
|
||
factory SteamGameDataResult.fromJson(Map<String, dynamic> json) => _$SteamGameDataResultFromJson(json); | ||
Map<String, dynamic> toJson() => _$SteamGameDataResultToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class SteamGameData{ | ||
String type = "", name = ""; | ||
int steam_appid = 0; | ||
@JsonKey(defaultValue: false) | ||
bool is_free = false; | ||
@JsonKey(name: "dlc", defaultValue: []) | ||
List<int> dlc_app_list = []; | ||
String detailed_description = "", about_the_game="", short_description="", supported_languages=""; | ||
String header_image = "", capsule_image = "", capsule_imagev5=""; | ||
@JsonKey(defaultValue: "") | ||
String legal_notice = ""; | ||
List<String> developers = [], publishers = []; | ||
@JsonKey(required: false, defaultValue: PriceOverview.new) | ||
PriceOverview price_overview = PriceOverview(); | ||
AvailablePlatform platforms = AvailablePlatform(); | ||
List<GameCategory> categories = []; | ||
List<GameScreenshot> screenshots = []; | ||
@JsonKey(required: false, defaultValue: []) | ||
List<GameMovie> movies = []; | ||
|
||
GameReleaseDate release_date = GameReleaseDate(); | ||
GameSupportInformation support_info = GameSupportInformation(); | ||
|
||
String background = "", background_raw = ""; | ||
|
||
SteamGameData(); | ||
|
||
factory SteamGameData.fromJson(Map<String, dynamic> json) => _$SteamGameDataFromJson(json); | ||
Map<String, dynamic> toJson() => _$SteamGameDataToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class PriceOverview{ | ||
String currency = ""; | ||
// should divide by 100 | ||
@JsonKey(name: "initial") | ||
int initial_price = 0; | ||
@JsonKey(name: "final") | ||
int final_price = 0; | ||
int discount_percent = 0; | ||
String initial_formatted = "", final_formatted = ""; | ||
|
||
PriceOverview(); | ||
|
||
|
||
factory PriceOverview.fromJson(Map<String, dynamic> json) => _$PriceOverviewFromJson(json); | ||
Map<String, dynamic> toJson() => _$PriceOverviewToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class AvailablePlatform{ | ||
bool windows = true, mac=false, linux=false; | ||
|
||
AvailablePlatform(); | ||
|
||
factory AvailablePlatform.fromJson(Map<String, dynamic> json) => _$AvailablePlatformFromJson(json); | ||
Map<String, dynamic> toJson() => _$AvailablePlatformToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameCategory{ | ||
int id = 0; | ||
String description = ""; | ||
|
||
GameCategory(); | ||
|
||
factory GameCategory.fromJson(Map<String, dynamic> json) => _$GameCategoryFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameCategoryToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameScreenshot{ | ||
int id = 0; | ||
String path_thumbnail = "", path_full = ""; | ||
|
||
GameScreenshot(); | ||
|
||
factory GameScreenshot.fromJson(Map<String, dynamic> json) => _$GameScreenshotFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameScreenshotToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameMovie{ | ||
int id = 0; | ||
String name = ""; | ||
String thumbnail = ""; | ||
|
||
GameMoviesFormat webm = GameMoviesFormat(); | ||
GameMoviesFormat mp4 = GameMoviesFormat(); | ||
bool highlight = true; | ||
|
||
GameMovie(); | ||
|
||
factory GameMovie.fromJson(Map<String, dynamic> json) => _$GameMovieFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameMovieToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameMoviesFormat{ | ||
@JsonKey(name: "480") | ||
String resolution_480p = ""; | ||
@JsonKey(name: "max") | ||
String resolution_max = ""; | ||
|
||
GameMoviesFormat(); | ||
|
||
factory GameMoviesFormat.fromJson(Map<String, dynamic> json) => _$GameMoviesFormatFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameMoviesFormatToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameReleaseDate{ | ||
bool coming_soon = false; | ||
String date = ""; | ||
|
||
GameReleaseDate(); | ||
|
||
factory GameReleaseDate.fromJson(Map<String, dynamic> json) => _$GameReleaseDateFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameReleaseDateToJson(this); | ||
} | ||
|
||
@JsonSerializable() | ||
class GameSupportInformation{ | ||
String url = "", email = ""; | ||
|
||
GameSupportInformation(); | ||
|
||
factory GameSupportInformation.fromJson(Map<String, dynamic> json) => _$GameSupportInformationFromJson(json); | ||
Map<String, dynamic> toJson() => _$GameSupportInformationToJson(this); | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
|
||
import 'package:dio/dio.dart'; | ||
import 'package:discuz_flutter/JsonResult/BilibiliVideoResult.dart'; | ||
import 'package:discuz_flutter/JsonResult/SteamGameDataResult.dart'; | ||
import 'package:retrofit/error_logger.dart'; | ||
import 'package:retrofit/http.dart'; | ||
|
||
part 'SteamApiClient.g.dart'; | ||
|
||
@RestApi(baseUrl: "https://store.steampowered.com/") | ||
abstract class SteamApiClient { | ||
factory SteamApiClient(Dio dio, {required String baseUrl}) = _SteamApiClient; | ||
|
||
@GET("/api/appdetails") | ||
Future<String> getSteamGameResultByAppId( | ||
@Query("appids") String appId, | ||
); | ||
} |
Oops, something went wrong.