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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
use crate::steam::remote_storage::UgcHandle;
use crate::steam::{AppId, SteamId, SteamResult};
use crate::string_ext::FromUtf8NulTruncating;
use crate::Client;
use chrono::offset::TimeZone;
use chrono::{DateTime, Utc};
use derive_more::{From, Into};
use enum_primitive_derive::Primitive;
use futures::Stream;
use genawaiter::sync::Gen;
use num_traits::FromPrimitive;
use std::collections::BTreeMap;
use std::convert::TryFrom;
use std::ffi::CString;
use std::mem::MaybeUninit;
use std::os::raw::c_char;
use std::{cmp, ptr, str};
use steamworks_sys as sys;

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
pub enum QueryType {
    RankedByVote,
    RankedByPublicationDate,
    AcceptedForGameRankedByAcceptanceDate,
    RankedByTrend,
    FavoritedByFriendsRankedByPublicationDate,
    CreatedByFriendsRankedByPublicationDate,
    RankedByNumTimesReported,
    CreatedByFollowedUsersRankedByPublicationDate,
    NotYetRated,
    RankedByTotalVotesAsc,
    RankedByVotesUp,
    RankedByTextSearch,
    RankedByTotalUniqueSubscriptions,
    RankedByPlaytimeTrend,
    RankedByTotalPlaytime,
    RankedByAveragePlaytimeTrend,
    RankedByLifetimeAveragePlaytime,
    RankedByPlaytimeSessionsTrend,
    RankedByLifetimePlaytimeSessions,
}

impl From<QueryType> for sys::EUGCQuery {
    fn from(x: QueryType) -> Self {
        x as sys::EUGCQuery
    }
}

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, Primitive)]
#[repr(i32)]
pub enum MatchingUgcType {
    Items = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items,
    ItemsMtx = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items_Mtx,
    ItemsReadyToUse = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items_ReadyToUse,
    Collections = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Collections,
    Artwork = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Artwork,
    Videos = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Videos,
    Screenshots = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Screenshots,
    AllGuides = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_AllGuides,
    WebGuides = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_WebGuides,
    IntegratedGuides = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_IntegratedGuides,
    UsableInGame = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_UsableInGame,
    ControllerBindings = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_ControllerBindings,
    GameManagedItems = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_GameManagedItems,
    All = sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_All,
}

impl From<MatchingUgcType> for sys::EUGCMatchingUGCType {
    fn from(x: MatchingUgcType) -> Self {
        match x {
            MatchingUgcType::Items => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items,
            MatchingUgcType::ItemsMtx => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items_Mtx,
            MatchingUgcType::ItemsReadyToUse => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Items_ReadyToUse
            }
            MatchingUgcType::Collections => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Collections
            }
            MatchingUgcType::Artwork => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Artwork,
            MatchingUgcType::Videos => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Videos,
            MatchingUgcType::Screenshots => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_Screenshots
            }
            MatchingUgcType::AllGuides => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_AllGuides,
            MatchingUgcType::WebGuides => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_WebGuides,
            MatchingUgcType::IntegratedGuides => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_IntegratedGuides
            }
            MatchingUgcType::UsableInGame => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_UsableInGame
            }
            MatchingUgcType::ControllerBindings => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_ControllerBindings
            }
            MatchingUgcType::GameManagedItems => {
                sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_GameManagedItems
            }
            MatchingUgcType::All => sys::EUGCMatchingUGCType_k_EUGCMatchingUGCType_All,
        }
    }
}

#[derive(Debug, Clone)]
pub struct UgcDetails {
    pub published_file_id: PublishedFileId,
    pub file_type: WorkshopFileType,
    pub creator_app_id: AppId,
    pub title: String,
    pub description: String,
    pub steam_id_owner: SteamId,
    pub time_created: DateTime<Utc>,
    pub time_updated: DateTime<Utc>,
    pub time_added_to_user_list: Option<DateTime<Utc>>,
    pub visibility: PublishedFileVisibility,
    pub banned: bool,
    pub accepted_for_use: bool,
    pub tags_truncated: bool,
    pub tags: Tags,
    pub file: Option<UgcHandle>,
    pub preview_file: Option<UgcHandle>,
    pub preview_url: String,
    pub file_name: String,
    pub file_size: i32,
    pub preview_file_size: i32,
    pub url: String,
    pub votes_up: u32,
    pub votes_down: u32,
    pub score: f32,
    pub num_children: u32,
}

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, From, Into)]
pub struct PublishedFileId(pub u64);

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, Primitive)]
#[repr(i32)]
pub enum WorkshopFileType {
    Community = sys::EWorkshopFileType_k_EWorkshopFileTypeCommunity as i32,
    Microtransaction = sys::EWorkshopFileType_k_EWorkshopFileTypeMicrotransaction as i32,
    Collection = sys::EWorkshopFileType_k_EWorkshopFileTypeCollection as i32,
    Art = sys::EWorkshopFileType_k_EWorkshopFileTypeArt as i32,
    Video = sys::EWorkshopFileType_k_EWorkshopFileTypeVideo as i32,
    Screenshot = sys::EWorkshopFileType_k_EWorkshopFileTypeScreenshot as i32,
    Game = sys::EWorkshopFileType_k_EWorkshopFileTypeGame as i32,
    Software = sys::EWorkshopFileType_k_EWorkshopFileTypeSoftware as i32,
    Concept = sys::EWorkshopFileType_k_EWorkshopFileTypeConcept as i32,
    WebGuide = sys::EWorkshopFileType_k_EWorkshopFileTypeWebGuide as i32,
    IntegratedGuide = sys::EWorkshopFileType_k_EWorkshopFileTypeIntegratedGuide as i32,
    Merch = sys::EWorkshopFileType_k_EWorkshopFileTypeMerch as i32,
    ControllerBinding = sys::EWorkshopFileType_k_EWorkshopFileTypeControllerBinding as i32,
    SteamworksAccessInvite =
        sys::EWorkshopFileType_k_EWorkshopFileTypeSteamworksAccessInvite as i32,
    SteamVideo = sys::EWorkshopFileType_k_EWorkshopFileTypeSteamVideo as i32,
    GameManagedItem = sys::EWorkshopFileType_k_EWorkshopFileTypeGameManagedItem as i32,
}

impl WorkshopFileType {
    pub(crate) fn from_inner(inner: sys::EWorkshopFileType) -> Self {
        WorkshopFileType::from_i32(inner as i32)
            .unwrap_or_else(|| panic!("Unknown EWorkshopFileType discriminant: {}", inner))
    }
}

#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, Primitive)]
#[repr(i32)]
pub enum PublishedFileVisibility {
    Public =
    sys::ERemoteStoragePublishedFileVisibility_k_ERemoteStoragePublishedFileVisibilityPublic as i32,
    FriendsOnly =
    sys::ERemoteStoragePublishedFileVisibility_k_ERemoteStoragePublishedFileVisibilityFriendsOnly as i32,
    Private =
    sys::ERemoteStoragePublishedFileVisibility_k_ERemoteStoragePublishedFileVisibilityPrivate as i32,
}

impl PublishedFileVisibility {
    pub(crate) fn from_inner(inner: sys::ERemoteStoragePublishedFileVisibility) -> Self {
        PublishedFileVisibility::from_i32(inner as i32).unwrap_or_else(|| {
            panic!(
                "Unknown ERemoteStoragePublishedFileVisibility discriminant: {}",
                inner
            )
        })
    }
}

#[derive(Debug, Clone, Default)]
pub struct Tags(String);

impl Tags {
    pub fn into_inner(self) -> String {
        self.0
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }

    pub fn iter(&self) -> impl Iterator<Item = &str> {
        self.into_iter()
    }
}

impl<'a> IntoIterator for &'a Tags {
    type Item = &'a str;
    type IntoIter = str::Split<'a, char>;

    fn into_iter(self) -> Self::IntoIter {
        self.0.split(',')
    }
}

#[derive(Debug, snafu::Snafu)]
pub enum QueryAllUgcError {
    /// Neither the creator App ID nor the consumer App ID was set to the App ID of the currently running application
    #[snafu(display("Neither the creator App ID nor the consumer App ID was set to the App ID of the currently running application"))]
    AppId,

    /// `CreateQueryAllUGCRequest()` failed
    #[snafu(display("CreateQueryAllUGCRequest() failed"))]
    CreateQueryAllUGCRequest,

    /// `SendQueryUGCRequest()` failed
    #[snafu(display("SendQueryUGCRequest() failed: {}", steam_result))]
    SendQueryUGCRequest { steam_result: SteamResult },
}

/// A builder for configuring a request to query all UGC.
///
/// See <https://partner.steamgames.com/doc/features/workshop/implementation#QueryContent> for an
/// overview of how querying UGC content works in Steamworks.
///
/// # Example
///
/// ```no_run
/// # let client: steamworks::Client = unimplemented!();
/// use steamworks::ugc::{MatchingUgcType, QueryType};
///
/// let ugc = client
///     .query_all_ugc(MatchingUgcType::ItemsReadyToUse)
///     .query_type(QueryType::RankedByPublicationDate)
///     .required_tag("Sprint")
///     .run();
/// ```
#[derive(Debug, Clone)]
pub struct QueryAllUgc {
    client: Client,
    query_type: QueryType,
    matching_ugc_type: MatchingUgcType,
    creator_app_id: Option<AppId>,
    consumer_app_id: Option<AppId>,
    max_results: Option<u32>,
    match_any_tag: bool,
    tags: BTreeMap<CString, bool>,
    return_long_description: bool,
}

impl QueryAllUgc {
    pub fn new(client: Client, matching_ugc_type: MatchingUgcType) -> Self {
        QueryAllUgc {
            client,
            query_type: QueryType::RankedByPublicationDate,
            matching_ugc_type,
            creator_app_id: None,
            consumer_app_id: None,
            max_results: None,
            match_any_tag: false,
            tags: BTreeMap::new(),
            return_long_description: false,
        }
    }

    /// Sets the eQueryType argument of
    /// [CreateQueryAllUGCRequest](https://partner.steamgames.com/doc/api/ISteamUGC#CreateQueryAllUGCRequest)
    ///
    /// Defaults to `RankedByPublicationDate`
    pub fn query_type(self, query_type: QueryType) -> Self {
        QueryAllUgc { query_type, ..self }
    }

    /// Sets the nCreatorAppID argument of
    /// [CreateQueryAllUGCRequest](https://partner.steamgames.com/doc/api/ISteamUGC#CreateQueryAllUGCRequest)
    ///
    /// Defaults to the current application's App ID.
    pub fn creator_app_id(self, app_id: AppId) -> Self {
        QueryAllUgc {
            creator_app_id: Some(app_id),
            ..self
        }
    }

    /// Sets the nConsumerAppID argument of
    /// [CreateQueryAllUGCRequest](https://partner.steamgames.com/doc/api/ISteamUGC#CreateQueryAllUGCRequest)
    ///
    /// Defaults to the current application's App ID.
    pub fn consumer_app_id(self, app_id: AppId) -> Self {
        QueryAllUgc {
            consumer_app_id: Some(app_id),
            ..self
        }
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#SetMatchAnyTag>
    pub fn match_any_tags(self) -> Self {
        QueryAllUgc {
            match_any_tag: true,
            ..self
        }
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#SetMatchAnyTag>
    pub fn match_all_tags(self) -> Self {
        QueryAllUgc {
            match_any_tag: false,
            ..self
        }
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#AddRequiredTag>
    pub fn required_tag(mut self, tag: impl Into<Vec<u8>>) -> Self {
        self.tags
            .insert(CString::new(tag).expect("Tag contains nul byte(s)"), true);
        self
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#AddRequiredTag>
    pub fn required_tags<T: Into<Vec<u8>>>(mut self, tags: impl IntoIterator<Item = T>) -> Self {
        let tags = tags
            .into_iter()
            .map(|tag| (CString::new(tag).expect("Tag contains nul byte(s)"), true));
        self.tags.extend(tags);
        self
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#AddExcludedTag>
    pub fn excluded_tag(mut self, tag: impl Into<Vec<u8>>) -> Self {
        self.tags
            .insert(CString::new(tag).expect("Tag contains nul byte(s)"), false);
        self
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#AddExcludedTag>
    pub fn excluded_tags<T: Into<Vec<u8>>>(mut self, tags: impl IntoIterator<Item = T>) -> Self {
        let tags = tags
            .into_iter()
            .map(|tag| (CString::new(tag).expect("Tag contains nul byte(s)"), false));
        self.tags.extend(tags);
        self
    }

    /// <https://partner.steamgames.com/doc/api/ISteamUGC#SetReturnLongDescription>
    pub fn return_long_description(self) -> Self {
        QueryAllUgc {
            return_long_description: true,
            ..self
        }
    }

    /// Executes the query.
    pub fn run(self) -> impl Stream<Item = Result<UgcDetails, QueryAllUgcError>> + Send {
        Gen::new(|co| async move {
            let current_app_id = self.client.app_id();
            if let (Some(x), Some(y)) = (self.creator_app_id, self.consumer_app_id) {
                if x != current_app_id && y != current_app_id {
                    co.yield_(AppIdSnafu.fail()).await;
                }
            }

            let max_results = self.max_results.unwrap_or(u32::MAX);

            let client = self.client.clone();
            let mut cursor: Option<Vec<c_char>> = None;
            let mut details_returned = 0;
            loop {
                let handle = unsafe {
                    let pointer = match &cursor {
                        Some(x) => x.as_ptr(),
                        None => ptr::null(),
                    };
                    sys::SteamAPI_ISteamUGC_CreateQueryAllUGCRequestCursor(
                        *client.0.ugc,
                        self.query_type.into(),
                        self.matching_ugc_type.into(),
                        self.creator_app_id.unwrap_or(current_app_id).into(),
                        self.consumer_app_id.unwrap_or(current_app_id).into(),
                        pointer,
                    )
                };
                if handle == sys::k_UGCQueryHandleInvalid {
                    co.yield_(CreateQueryAllUGCRequestSnafu.fail()).await;
                    break;
                }

                unsafe {
                    let success = sys::SteamAPI_ISteamUGC_SetReturnLongDescription(
                        *client.0.ugc,
                        handle,
                        self.return_long_description,
                    );
                    assert!(success, "SetReturnLongDescription failed");

                    let success = sys::SteamAPI_ISteamUGC_SetMatchAnyTag(
                        *client.0.ugc,
                        handle,
                        self.match_any_tag,
                    );
                    assert!(success, "SetMatchAnyTag failed");

                    for (tag, required) in &self.tags {
                        if *required {
                            sys::SteamAPI_ISteamUGC_AddRequiredTag(
                                *client.0.ugc,
                                handle,
                                tag.as_ptr(),
                            );
                        } else {
                            sys::SteamAPI_ISteamUGC_AddExcludedTag(
                                *client.0.ugc,
                                handle,
                                tag.as_ptr(),
                            );
                        }
                    }
                }

                let response: sys::SteamUGCQueryCompleted_t = unsafe {
                    let handle = sys::SteamAPI_ISteamUGC_SendQueryUGCRequest(*client.0.ugc, handle);

                    self.client.register_for_call_result(handle).await
                };

                {
                    let result = SteamResult::from_inner(response.m_eResult);
                    if result != SteamResult::OK {
                        co.yield_(
                            SendQueryUGCRequestSnafu {
                                steam_result: result,
                            }
                            .fail(),
                        )
                        .await;
                        break;
                    }
                }

                let items_to_reach_quota = max_results - details_returned;
                for i in 0..cmp::min(items_to_reach_quota, response.m_unNumResultsReturned) {
                    let mut details: MaybeUninit<sys::SteamUGCDetails_t> = MaybeUninit::uninit();
                    let success = unsafe {
                        sys::SteamAPI_ISteamUGC_GetQueryUGCResult(
                            *client.0.ugc,
                            response.m_handle,
                            i,
                            details.as_mut_ptr(),
                        )
                    };
                    assert!(success, "GetQueryUGCResult failed");
                    let details = unsafe { details.assume_init() };
                    let preview_url = unsafe {
                        let mut buf = vec![0_u8; 256];
                        sys::SteamAPI_ISteamUGC_GetQueryUGCPreviewURL(
                            *client.0.ugc,
                            response.m_handle,
                            i,
                            buf.as_mut_ptr() as *mut c_char,
                            u32::try_from(buf.len()).unwrap(),
                        );
                        String::from_utf8_nul_truncating(buf)
                            .expect("Workshop item's preview image URL is not valid UTF-8")
                    };
                    let details = UgcDetails {
                        published_file_id: PublishedFileId(details.m_nPublishedFileId),
                        file_type: WorkshopFileType::from_inner(details.m_eFileType),
                        creator_app_id: AppId(details.m_nCreatorAppID),
                        title: String::from_utf8_nul_truncating(&details.m_rgchTitle[..])
                            .expect("Workshop item's title is not valid UTF-8"),
                        description: String::from_utf8_nul_truncating(
                            &details.m_rgchDescription[..],
                        )
                        .expect("Workshop item's description is not valid UTF-8"),
                        steam_id_owner: details.m_ulSteamIDOwner.into(),
                        time_created: Utc
                            .timestamp_opt(i64::from(details.m_rtimeCreated), 0)
                            .unwrap(),
                        time_updated: Utc
                            .timestamp_opt(i64::from(details.m_rtimeUpdated), 0)
                            .unwrap(),
                        time_added_to_user_list: if details.m_rtimeAddedToUserList == 0 {
                            None
                        } else {
                            Some(
                                Utc.timestamp_opt(i64::from(details.m_rtimeAddedToUserList), 0)
                                    .unwrap(),
                            )
                        },
                        visibility: PublishedFileVisibility::from_inner(details.m_eVisibility),
                        banned: details.m_bBanned,
                        accepted_for_use: details.m_bAcceptedForUse,
                        tags_truncated: details.m_bTagsTruncated,
                        tags: Tags(
                            String::from_utf8_nul_truncating(&details.m_rgchTags[..])
                                .expect("Workshop item's tags are not valid UTF-8"),
                        ),
                        file: UgcHandle::from_inner(details.m_hFile),
                        preview_file: UgcHandle::from_inner(details.m_hPreviewFile),
                        preview_url,
                        file_name: String::from_utf8_nul_truncating(&details.m_pchFileName[..])
                            .expect("Workshop item's file name is not valid UTF-8"),
                        file_size: details.m_nFileSize,
                        preview_file_size: details.m_nPreviewFileSize,
                        url: String::from_utf8_nul_truncating(&details.m_rgchURL[..])
                            .expect("Workshop item's url is not valid UTF-8"),
                        votes_up: details.m_unVotesUp,
                        votes_down: details.m_unVotesDown,
                        score: details.m_flScore,
                        num_children: details.m_unNumChildren,
                    };

                    co.yield_(Ok(details)).await;
                    details_returned += 1;
                }

                unsafe { sys::SteamAPI_ISteamUGC_ReleaseQueryUGCRequest(*client.0.ugc, handle) };

                let more_items_wanted = items_to_reach_quota > 0;
                let more_items_available = response.m_unTotalMatchingResults > details_returned;
                if !more_items_wanted || !more_items_available {
                    break;
                }

                cursor = match cursor {
                    Some(mut x) => {
                        x.copy_from_slice(&response.m_rgchNextCursor);
                        Some(x)
                    }
                    None => Some(Vec::from(&response.m_rgchNextCursor[..])),
                };
            }
        })
    }
}