-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
148 lines (121 loc) · 5.26 KB
/
Form1.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.Http;
using System.Net.Http.Headers;
using Newtonsoft.Json.Linq;
namespace MovieOrganizer
{
public partial class Form1 : Form
{
//private static readonly HttpClient client = new HttpClient();
public Form1()
{
InitializeComponent();
}
private void sourcePathBrowse_Click(object sender, EventArgs e)
{
FolderBrowserDialog fbdSource = new FolderBrowserDialog();
fbdSource.Description = "Select the source path to move movies from.";
if (sourcePath.Text != "") { fbdSource.SelectedPath = sourcePath.Text; }
if (fbdSource.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
sourcePath.Text = fbdSource.SelectedPath;
sourceBox.Items.Clear();
try
{
string[] extensions = { ".avi", ".mp4", ".mkv" };
foreach (string fileName in Directory.EnumerateFiles(fbdSource.SelectedPath, "*.*", SearchOption.AllDirectories).Where(s => extensions.Any(ext => ext == Path.GetExtension(s))))
{
sourceBox.Items.Add(fileName);
}
/*
var txtFiles = Directory.EnumerateFiles(fbdSource.SelectedPath, "*.avi", SearchOption.AllDirectories);
foreach (string currentFile in txtFiles)
{
string fileName = currentFile.Substring(fbdSource.SelectedPath.Length + 1);
sourceBox.Items.Add(fileName);
//Directory.Move(currentFile, Path.Combine(archiveDirectory, fileName));
}
*/
}
catch (Exception errorE)
{
MessageBox.Show("Error Message: " + errorE.Message, "Error Title", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
}
private void destinationPathBrowse_Click(object sender, EventArgs e)
{
FolderBrowserDialog fbdDestination = new FolderBrowserDialog();
fbdDestination.Description = "Select the destination folder to movie and organize movies.";
if (destinationPath.Text != "") { fbdDestination.SelectedPath = destinationPath.Text; }
if (fbdDestination.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
destinationPath.Text = fbdDestination.SelectedPath;
}
}
private async void button1_Click(object sender, EventArgs e)
{
string oAPIKey = omdbApiKey.Text;
var oAPIKeyTest = ProcessRepositories(oAPIKey);
}
public static async Task ProcessRepositories(string oAPIKey)
{
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept.Clear();
/* client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/vnd.github.v3+json")); */
client.DefaultRequestHeaders.Add("User-Agent", ".NET Foundation Repository Reporter");
var response = await client.GetAsync("http://www.omdbapi.com/?apikey=" + oAPIKey + "&type=movie&s=The%20Day%20After%20Tomorrow");
if (response.IsSuccessStatusCode)
{
var getResponsestring = await response.Content.ReadAsStringAsync();
MessageBox.Show("Message: " + getResponsestring, "Success", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
//JObject o = JObject.Parse(getResponsestring);
}
else
{
MessageBox.Show("Wrong API Key", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void omdbapiLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://www.omdbapi.com/");
}
private void startButton_Click(object sender, EventArgs e)
{
int totalFiles = sourceBox.Items.Count;
if (totalFiles > 0)
{
progressBar1.Maximum = totalFiles;
//MessageBox.Show(progressIncrement.ToString());
sourceBox.BeginUpdate();
try
{
int fileCount = 0;
destinationBox.Items.Clear();
foreach (var sourceFile in sourceBox.Items )
{
fileCount++;
progressBar1.Value = fileCount;
progressBar1.Refresh();
//MessageBox.Show(sourceFile.ToString());
destinationBox.Items.Add(fileCount.ToString() + " - " + sourceFile.ToString());
}
}
finally
{
sourceBox.EndUpdate();
}
}
}
}
}