-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChannelPage.xaml.cs
569 lines (465 loc) · 19 KB
/
ChannelPage.xaml.cs
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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
using Newtonsoft.Json;
using Windows.UI.Xaml.Media.Imaging;
using System.Collections.ObjectModel;
using Windows.Phone.UI.Input;
namespace ValleyTube
{
public sealed partial class ChannelPage : Page
{
private string channelId;
private string videoContinuation = string.Empty;
private string communityContinuation;
private bool isLoadingMoreVideos = false;
public ObservableCollection<VideoObjectAgain> Videos { get; set; } = new ObservableCollection<VideoObjectAgain>();
public ChannelPage()
{
this.InitializeComponent();
SubscriptionManager.LoadSubscriptions();
}
private void HardwareButtons_BackPressed(object sender, BackPressedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame == null)
return;
if (rootFrame.CanGoBack)
{
rootFrame.GoBack();
e.Handled = true;
}
else
{
e.Handled = false;
}
}
protected override async void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
string parameter = e.Parameter as string;
if (parameter != null)
{
channelId = parameter;
await LoadChannelData();
}
else
{
System.Diagnostics.Debug.WriteLine("Error: Parameter is not a valid string.");
}
}
private async Task LoadChannelData()
{
await LoadChannelDetails();
await LoadChannelVideos();
await LoadCommunityPosts();
}
private void InitializeSubscriptionButton(String channelId)
{
try
{
System.Diagnostics.Debug.WriteLine("channeId is " + channelId);
System.Diagnostics.Debug.WriteLine("Retrieved authorId is " + channelId);
if (!string.IsNullOrEmpty(channelId))
{
if (SubscriptionManager.IsSubscribed(channelId))
{
SubscribeButton.Content = "Unsubscribe";
}
else
{
SubscribeButton.Content = "Subscribe";
}
}
else
{
System.Diagnostics.Debug.WriteLine("Failed to retrieve authorId.");
SubscribeButton.Content = "Subscribe";
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error in InitializeSubscriptionButton: " + ex.Message);
}
}
private async Task LoadChannelDetails()
{
string channelUrl = $"{Settings.InvidiousInstance}/api/v1/channels/{channelId}";
using (var httpClient = new HttpClient())
{
try
{
var response = await httpClient.GetStringAsync(channelUrl);
var channelData = JsonConvert.DeserializeObject<ChannelObject>(response);
if (channelData != null)
{
ChannelTitle.Text = channelData.author;
ChannelDescription.Text = channelData.description;
var bannerUrl = channelData.authorBanners.FirstOrDefault()?.Url ?? string.Empty;
SetBackgroundImage(bannerUrl);
ChannelStatsTextBlock.Text = $"Subscribers: {channelData.subCount}\nTotal Views: {channelData.totalViews}";
InitializeSubscriptionButton(channelId);
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error loading channel details: " + ex.Message);
}
}
}
private void SetBackgroundImage(string bannerUrl)
{
var bitmapImage = new BitmapImage(new Uri(bannerUrl));
BackgroundImage.Source = bitmapImage;
}
private async Task LoadChannelVideos()
{
string videosUrl = $"{Settings.InvidiousInstance}/api/v1/channels/{channelId}/videos";
using (var httpClient = new HttpClient())
{
try
{
var response = await httpClient.GetStringAsync(videosUrl);
System.Diagnostics.Debug.WriteLine("Raw JSON Response: " + response);
var videoResponse = JsonConvert.DeserializeObject<VideoResponse>(response);
if (videoResponse != null && videoResponse.videos != null)
{
Videos.Clear();
foreach (var video in videoResponse.videos)
{
Videos.Add(video);
}
videoContinuation = videoResponse.continuation;
System.Diagnostics.Debug.WriteLine("Continuation token updated: " + videoContinuation);
VideosListView.ItemsSource = Videos;
}
else
{
System.Diagnostics.Debug.WriteLine("Error: videoResponse is null or videos is null.");
}
}
catch (JsonSerializationException jsonEx)
{
System.Diagnostics.Debug.WriteLine("JSON Serialization Error: " + jsonEx.Message);
}
catch (HttpRequestException httpEx)
{
System.Diagnostics.Debug.WriteLine("HTTP Request Error: " + httpEx.Message);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error loading videos: " + ex.Message);
}
}
}
private void SubscribeButton_Click(object sender, RoutedEventArgs e)
{
if (channelId != null)
{
if (SubscriptionManager.IsSubscribed(channelId))
{
SubscriptionManager.Unsubscribe(channelId);
SubscribeButton.Content = "Subscribe";
SubscriptionManager.SaveSubscriptions();
}
else
{
SubscriptionManager.Subscribe(channelId);
SubscribeButton.Content = "Unsubscribe";
SubscriptionManager.SaveSubscriptions();
}
}
else
{
System.Diagnostics.Debug.WriteLine("Failed to get channelId.");
}
}
private void ScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
var scrollViewer = sender as ScrollViewer;
if (scrollViewer != null)
{
System.Diagnostics.Debug.WriteLine($"ScrollViewer VerticalOffset: {scrollViewer.VerticalOffset}");
System.Diagnostics.Debug.WriteLine($"ScrollViewer ScrollableHeight: {scrollViewer.ScrollableHeight}");
double threshold = scrollViewer.ScrollableHeight * 0.2;
System.Diagnostics.Debug.WriteLine($"Threshold for loading more videos: {threshold}");
if (scrollViewer.VerticalOffset >= scrollViewer.ScrollableHeight - threshold)
{
System.Diagnostics.Debug.WriteLine("Reached the threshold, loading more videos.");
LoadMoreVideos();
}
else
{
System.Diagnostics.Debug.WriteLine("Not close enough to the bottom to load more videos.");
}
}
}
private async void LoadMoreVideos()
{
if (string.IsNullOrEmpty(videoContinuation))
{
System.Diagnostics.Debug.WriteLine("No continuation token available to load more videos.");
return;
}
string videosUrl = $"{Settings.InvidiousInstance}/api/v1/channels/{channelId}/videos?continuation={videoContinuation}";
using (var httpClient = new HttpClient())
{
try
{
var response = await httpClient.GetStringAsync(videosUrl);
System.Diagnostics.Debug.WriteLine("Raw JSON Response for more videos: " + response);
var videoResponse = JsonConvert.DeserializeObject<VideoResponse>(response);
if (videoResponse != null && videoResponse.videos != null && videoResponse.videos.Count > 0)
{
foreach (var video in videoResponse.videos)
{
Videos.Add(video);
}
videoContinuation = videoResponse.continuation;
System.Diagnostics.Debug.WriteLine("Continuation token updated: " + videoContinuation);
}
else
{
System.Diagnostics.Debug.WriteLine("No more videos to load or videoResponse is null.");
}
}
catch (JsonSerializationException jsonEx)
{
System.Diagnostics.Debug.WriteLine("JSON Serialization Error: " + jsonEx.Message);
}
catch (HttpRequestException httpEx)
{
System.Diagnostics.Debug.WriteLine("HTTP Request Error: " + httpEx.Message);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error loading more videos: " + ex.Message);
}
}
}
private async Task LoadCommunityPosts()
{
string communityUrl = $"{Settings.InvidiousInstance}/api/v1/channels/{channelId}/community";
using (var httpClient = new HttpClient())
{
try
{
var response = await httpClient.GetStringAsync(communityUrl);
var communityData = JsonConvert.DeserializeObject<CommunityResponse>(response);
if (communityData != null && communityData.comments != null)
{
CommunityListView.ItemsSource = communityData.comments;
communityContinuation = communityData.continuation;
}
else
{
System.Diagnostics.Debug.WriteLine("Error: communityData is null or comments is null.");
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error loading community posts: " + ex.Message);
}
}
}
private async void LoadMoreCommunityPosts()
{
if (string.IsNullOrEmpty(communityContinuation))
{
System.Diagnostics.Debug.WriteLine("No continuation token available to load more community posts.");
return;
}
string communityUrl = $"{Settings.InvidiousInstance}/api/v1/channels/{channelId}/community?continuation={communityContinuation}";
using (var httpClient = new HttpClient())
{
try
{
var response = await httpClient.GetStringAsync(communityUrl);
System.Diagnostics.Debug.WriteLine("Raw JSON Response for more community posts: " + response);
var communityData = JsonConvert.DeserializeObject<CommunityResponse>(response);
if (communityData != null && communityData.comments != null && communityData.comments.Count > 0)
{
foreach (var comment in communityData.comments)
{
((List<ChannelComment>)CommunityListView.ItemsSource).Add(comment);
}
communityContinuation = communityData.continuation;
System.Diagnostics.Debug.WriteLine("Continuation token updated for community posts: " + communityContinuation);
}
else
{
System.Diagnostics.Debug.WriteLine("No more community posts to load or communityData is null.");
}
}
catch (JsonSerializationException jsonEx)
{
System.Diagnostics.Debug.WriteLine("JSON Serialization Error: " + jsonEx.Message);
}
catch (HttpRequestException httpEx)
{
System.Diagnostics.Debug.WriteLine("HTTP Request Error: " + httpEx.Message);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Error loading more community posts: " + ex.Message);
}
}
}
public static void SaveHistoryVideoObject(VideoObjectAgain video)
{
var videoResult = new VideoResult
{
VideoId = video.videoId,
Title = video.Title,
Author = video.Author,
};
MainPage.AddVideoToHistory(videoResult);
}
private void CommunityScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
var scrollViewer = sender as ScrollViewer;
if (scrollViewer != null)
{
double threshold = scrollViewer.ScrollableHeight * 0.2;
if (scrollViewer.VerticalOffset >= scrollViewer.ScrollableHeight - threshold)
{
LoadMoreCommunityPosts();
}
}
}
private void ImageButton_Click(object sender, RoutedEventArgs e)
{
Button button = sender as Button;
VideoObjectAgain video = button != null ? button.DataContext as VideoObjectAgain : null;
if (video != null)
{
SaveHistoryVideoObject(video);
Frame.Navigate(typeof(VideoPage), video.videoId);
}
}
private void LoadMoreComments_Click(object sender, RoutedEventArgs e)
{
}
}
public class VideoObjectAgain
{
public string videoId { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string description { get; set; }
public string PublishedText { get; set; }
public string ViewCountText { get; set; }
public List<ImageObject> videoThumbnails { get; set; }
public int LengthSeconds { get; set; }
public string continuation { get; set; }
public string ThumbnailUrl
{
get
{
if (videoThumbnails != null && videoThumbnails.Count > 0)
{
return videoThumbnails[0].Url;
}
return string.Empty;
}
}
public string LengthFormatted
{
get
{
TimeSpan timeSpan = TimeSpan.FromSeconds(LengthSeconds);
if (timeSpan.TotalMinutes < 100)
{
return timeSpan.ToString(@"mm\:ss");
}
else
{
return timeSpan.ToString(@"hh\:mm\:ss");
}
}
}
}
public class Banner
{
public string Url { get; set; }
}
public class CommunityResponse
{
public string authorId { get; set; }
public List<ChannelComment> comments { get; set; }
public string continuation { get; set; }
}
public class ChannelComment
{
public string attachmentType { get; set; }
[JsonIgnore]
public AttachmentBase attachment { get; set; }
public string author { get; set; }
public bool authorIsChannelOwner { get; set; }
public string authorId { get; set; }
public List<ImageObject> authorThumbnails { get; set; }
public string authorUrl { get; set; }
public string commentId { get; set; }
public string content { get; set; }
public string contentHtml { get; set; }
public bool isEdited { get; set; }
public int likeCount { get; set; }
public int published { get; set; }
public string publishedText { get; set; }
public int replyCount { get; set; }
}
public abstract class AttachmentBase
{
public string type { get; set; }
}
public class ImageAttachment : AttachmentBase
{
public List<ImageObject> imageThumbnails { get; set; }
}
public class MultiImageAttachment : AttachmentBase
{
public List<List<ImageObject>> images { get; set; }
}
public class PollChoice
{
public string text { get; set; }
public List<ImageObject> image { get; set; }
}
public class PollAttachment : AttachmentBase
{
public int totalVotes { get; set; }
public List<PollChoice> choices { get; set; }
}
public class PlaylistAttachment : AttachmentBase
{
}
public class VideoAttachment : AttachmentBase
{
}
public class ChannelObject
{
public string author { get; set; }
public string description { get; set; }
public List<Banner> authorBanners { get; set; }
public int subCount { get; set; }
public int totalViews { get; set; }
}
public class ImageObject
{
public string Url { get; set; }
}
public class VideoList
{
public List<VideoObjectAgain> latestVideos { get; set; }
}
public class VideoResponse
{
public List<VideoObjectAgain> videos { get; set; }
public string continuation { get; set; }
}
}