-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainActivity.cs
More file actions
396 lines (309 loc) · 13.1 KB
/
Copy pathMainActivity.cs
File metadata and controls
396 lines (309 loc) · 13.1 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Android.App;
using Android.OS;
using Android.Support.V7.App;
using Android.Runtime;
using Android.Widget;
using Android.Views;
using Android.Support.Design.Widget;
using Android.Media;
using YoutubeExplode;
using Vertex.Media;
using Vertex.Utils;
using Xamarin.Essentials;
using static Xamarin.Essentials.Permissions;
namespace Vertex
{
[Activity(Label = "@string/app_name", Theme = "@style/VertexTheme", MainLauncher = true)]
public partial class ContentActivity : AppCompatActivity
{
private const string STR_PLAY = "►";
private const string STR_PAUSE = "II";
private readonly List<TrackData> tracks = new List<TrackData>();
//private HeadphoneConnectionReceiver headphoneReceiver;
private View contentMain;
private ProgressBar loadingProgress;
private Button
buttonStart,
buttonPlay;
private ListView listMenu;
private EditText uriEnterText;
private TextView
reporterText,
nameholderText,
durationText,
textViewCurrentTime,
textViewLength;
private Playback mediaPlayback;
private SeekBar seekAudio;
private ProgressAdapter pga;
private Button buttonEqualizer;
private EqualizerController equalizerController;
private BluetoothConnectionReceiver bluetoothReceiver;
protected async override void OnCreate(Bundle savedInstanceState)
{
AppCompatDelegate.DefaultNightMode = AppCompatDelegate.ModeNightYes;
base.OnCreate(savedInstanceState);
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
SetContentView(Resource.Layout.content_main);
#region Controls
contentMain = FindViewById<RelativeLayout>(Resource.Id.contentMain);
loadingProgress = FindViewById<ProgressBar>(Resource.Id.progressBar1);
nameholderText = FindViewById<TextView>(Resource.Id.textView2);
reporterText = FindViewById<TextView>(Resource.Id.textView3);
durationText = FindViewById<TextView>(Resource.Id.textViewTimeSpan);
textViewCurrentTime = FindViewById<TextView>(Resource.Id.textViewCurrentTime);
textViewLength = FindViewById<TextView>(Resource.Id.textViewLength);
uriEnterText = FindViewById<EditText>(Resource.Id.editText1);
listMenu = FindViewById<ListView>(Resource.Id.listMenu1);
buttonStart = FindViewById<Button>(Resource.Id.button1);
buttonStart.Click += InitLoader;
buttonPlay = FindViewById<Button>(Resource.Id.buttonPlay);
buttonPlay.Enabled = false;
buttonPlay.Click += (s, e) =>
{
if (mediaPlayback.CanPlay)
{
if (mediaPlayback.IsPlaying)
{
buttonPlay.Text = STR_PLAY;
mediaPlayback.Pause();
}
else
{
buttonPlay.Text = STR_PAUSE;
mediaPlayback.Play();
}
}
};
buttonEqualizer = FindViewById<Button>(Resource.Id.buttonEqualizer);
buttonEqualizer.Enabled = true;
buttonEqualizer.Click += (s, e) =>
{
equalizerController ??= new EqualizerController(this, mediaPlayback);
equalizerController.ShowDialog();
};
seekAudio = FindViewById<SeekBar>(Resource.Id.seekBarAudioSeek);
seekAudio.ProgressChanged += (s, e) =>
{
if (seekAudio.Pressed)
mediaPlayback.Seek(seekAudio.Progress / 100f);
};
var img = FindViewById<ImageView>(Resource.Id.imageView1);
img.SetImageResource(Resource.Drawable.back);
#endregion
if (await RequirePermissionAsync(new StorageRead()))
{
InitTracks();
}
//headphoneReceiver = new HeadphoneConnectionReceiver();
//var filter = new IntentFilter(Intent.ActionHeadsetPlug);
//RegisterReceiver(headphoneReceiver, filter);
mediaPlayback = new Playback(this);
mediaPlayback.OnFinished += (s, e) =>
{
buttonPlay.Text = STR_PLAY;
};
mediaPlayback.ProgressChanged += (s, e) =>
{
seekAudio.Progress = (int)(mediaPlayback.Progress * 100);
textViewCurrentTime.Text = $"{mediaPlayback.CurrentPosition:hh\\:mm\\:ss}";
};
mediaPlayback.OnResume += (s, e) =>
{
buttonPlay.Text = STR_PAUSE;
};
mediaPlayback.OnPaused += (s, e) =>
{
buttonPlay.Text = STR_PLAY;
};
bluetoothReceiver = new BluetoothConnectionReceiver(this, mediaPlayback);
pga = new ProgressAdapter(loadingProgress);
pga.OnDone += LoadingDone;
}
private static async Task<bool> RequirePermissionAsync(BasePlatformPermission storageRead)
{
var permissionStatus = await storageRead.CheckStatusAsync();
if (permissionStatus == PermissionStatus.Denied)
{
permissionStatus = await storageRead.RequestAsync();
if (permissionStatus == PermissionStatus.Granted)
{
return true;
}
return false;
}
else
{
return true;
}
}
private void InitTracks()
{
string path = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryMusic).ToString();
var files = Directory.EnumerateFiles(path);
var yts = files.Where(n =>
n.Contains("Music/[YE]"));
files = yts.OrderBy(n => n).Concat(files.Except(yts).OrderBy(n => n));
MediaMetadataRetriever mtr = new MediaMetadataRetriever();
foreach (var f in files)
{
try
{
var tdata = TrackData.FromFile(f);
tracks.Add(tdata);
}
catch (Exception)
{
}
}
TrackDataAdapter tda = new TrackDataAdapter(this, tracks);
tda.OnTrackPicked += (s, e) =>
{
SetPlayerAudio(e);
};
listMenu.Adapter = tda;
}
private void InitLoader(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(uriEnterText.Text))
{
var m = Regex.Match(uriEnterText.Text, @"((?<=youtube.com/watch\?v=).{11})|((?<=(//youtu.be/)).{11})");
if (m.Success)
{
try
{
uriEnterText.ClearFocus();
LoadAudio($"https://youtube.com/watch?v={m.Value}");
buttonStart.Enabled = true;
}
catch (Exception)
{
buttonStart.Enabled = true;
reporterText.Text = "Error occured, try again.";
}
}
else
reporterText.Text = "Invalid URI. Check your link.";
}
else
reporterText.Text = "Field is empty.";
}
private void LoadingDone(object sender, EventArgs e)
{
reporterText.Text = $"Loading done.";
buttonStart.Enabled = true;
}
private async void LoadAudio(string uri)
{
buttonStart.Enabled = false;
reporterText.Text = "Getting video metadata...";
var youtube = new YoutubeClient { };
try
{
var video = await youtube.Videos.GetAsync(uri);
var title = video.Title;
var duration = video.Duration;
nameholderText.Text = $"{title}";
durationText.Text = $"{duration:hh\\:mm\\:ss}";
var streamManifest = await youtube.Videos.Streams.GetManifestAsync(video.Id);
var astreams = streamManifest.GetAudioOnlyStreams();
var audio = astreams.First();
var proceed = true;
if (audio != null && proceed)
{
if (!await RequirePermissionAsync(new StorageWrite()))
{
Snackbar.Make(contentMain, $"Cannot write a file without the required permission", Snackbar.LengthLong).Show();
return;
}
string path = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryMusic).AbsolutePath;
var state = Android.OS.Environment.ExternalStorageState;
if (state == "mounted")
{
reporterText.Text = $"Downloading...";
var fullpath = $"{path}/[YE] {title.Replace("/", @"\")}." + audio.Container.Name;
await youtube.Videos.Streams.DownloadAsync(audio, fullpath, pga);
SetPlayerAudio(TrackData.FromFile(fullpath));
}
else
{
Snackbar.Make(contentMain, $"Cannot write a file without the required permission", Snackbar.LengthLong).Show();
}
}
}
catch (System.Net.Http.HttpRequestException)
{
Snackbar.Make(contentMain, $"Error occured. No Internet connection.", Snackbar.LengthLong).Show();
}
catch (System.IO.IOException e)
{
if (e.HResult == -2147024864)
{
Snackbar.Make(contentMain, $"Error occured. Cannot write to device.", Snackbar.LengthLong).Show();
}
else
Snackbar.Make(contentMain, $"Error occured. Internet connection is down.", Snackbar.LengthLong).Show();
}
catch (Exception)
{
Snackbar.Make(contentMain, "Error occured. Try again.", Snackbar.LengthLong).Show();
}
}
public void SetPlayerAudio(TrackData td)
{
try
{
mediaPlayback.SetAudio(td.Path);
buttonPlay.Text = STR_PLAY;
buttonPlay.Enabled = true;
nameholderText.Text = $"{td.TrackName}";
textViewLength.Text = $"{mediaPlayback.Duration:hh\\:mm\\:ss}";
durationText.Text = $"{td.Duration:hh\\:mm\\:ss}";
textViewCurrentTime.Text = $"{new TimeSpan():hh\\:mm\\:ss}";
reporterText.Text = $"";
}
catch (Exception e)
{
Snackbar.Make(contentMain, "Failed to play audio", Snackbar.LengthLong).Show();
//reporterText.Text = $"Failed to play audio";
System.Diagnostics.Debug.WriteLine(e.Message);
nameholderText.Text = $"";
textViewLength.Text = $"";
durationText.Text = $"{new TimeSpan():hh\\:mm\\:ss}";
textViewCurrentTime.Text = $"{new TimeSpan():hh\\:mm\\:ss}";
}
}
protected override void OnDestroy()
{
base.OnDestroy();
//UnregisterReceiver(headphoneReceiver);
bluetoothReceiver.Unregister();
mediaPlayback?.Release();
}
public override bool OnCreateOptionsMenu(IMenu menu)
{
MenuInflater.Inflate(Resource.Menu.menu_main, menu);
return true;
}
public override bool OnOptionsItemSelected(IMenuItem item)
{
int id = item.ItemId;
if (id == Resource.Id.action_settings)
{
return true;
}
return base.OnOptionsItemSelected(item);
}
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
{
Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);
base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}