1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#[must_use]
pub fn manage_api_url(method: &str, steamids: &str, api_key: &str) -> String {
let mut api: crate::structs::api::Api = crate::structs::api::Api::default();
match method {
"GetPlayerSummaries" => {
api.interface = "ISteamUser";
api.version = "v2";
api.accepts_multiple_ids = true;
}
"GetFriendList" => {
api.interface = "ISteamUser";
api.version = "v1";
api.accepts_multiple_ids = false;
}
"GetPlayerBans" => {
api.interface = "ISteamUser";
api.version = "v1";
api.accepts_multiple_ids = true;
}
"GetSteamLevel" => {
api.interface = "IPlayerService";
api.version = "v1";
api.accepts_multiple_ids = false;
}
_ => panic!("Method not found!"),
}
if api.accepts_multiple_ids {
format!(
"https://api.steampowered.com/{}/{}/{}/?key={}&steamids={}",
api.interface, method, api.version, api_key, steamids
)
} else {
format!(
"https://api.steampowered.com/{}/{}/{}/?key={}&steamid={}",
api.interface, method, api.version, api_key, steamids
)
}
}