-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
374 lines (317 loc) · 13.9 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
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Runtime.Remoting.Lifetime;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Runtime.Caching;
namespace Laravel_Setup
{
public partial class Form1 : Form
{
private static StringBuilder output = new StringBuilder();
private const string BaseUrl = "https://api.github.com";
private const string Owner = "laravel";
private const string Repo = "laravel";
public static string LocalReleaseFile = Path.Combine(Application.StartupPath, "releases.json");
public Form1()
{
InitializeComponent();
}
// Uzak Urlden Releaseleri getir.
private static List<Release> GetAllReleases()
{
var releasesDiffList = new List<Release>();
var client = new HttpClient();
client.DefaultRequestHeaders.Add("User-Agent", "C# HttpClient");
var page = 1;
while (true)
{
var url = $"{BaseUrl}/repos/{Owner}/{Repo}/releases?page={page}&per_page=1000";
var response = client.GetAsync(url).Result;
if (response.IsSuccessStatusCode)
{
var json = response.Content.ReadAsStringAsync().Result;
var pageReleases = JsonConvert.DeserializeObject<List<Release>>(json);
if (pageReleases.Count == 0)
{
break;
}
releasesDiffList.AddRange(pageReleases);
page++;
}
else
{
throw new Exception($"Error: {response.StatusCode} - {response.ReasonPhrase}");
}
}
return releasesDiffList;
}
// Yerel Dosyadan Releaseleri getir.
private static List<Release> GetReleasesFromFile(string filePath)
{
var json = File.ReadAllText(filePath);
return JsonConvert.DeserializeObject<List<Release>>(json);
}
// Release Json List Elements
public class Release
{
public string Name { get; set; }
public string Tag_Name { get; set; }
public string Body { get; set; }
public DateTimeOffset Published_At { get; set; }
}
private void Form1_Load(object sender, EventArgs e)
{
installdir_textbox.Text = Application.StartupPath;
if (!File.Exists(LocalReleaseFile))
{
Console.WriteLine("Uzaktan getir.");
var releasesDiff = GetAllReleases();
var json = JsonConvert.SerializeObject(releasesDiff);
File.WriteAllText(LocalReleaseFile, json);
}
else
{
Console.WriteLine("Yerelden getir.");
var releasesLocal = GetReleasesFromFile(LocalReleaseFile);
foreach (var release in releasesLocal)
{
if (!string.IsNullOrEmpty(release.Tag_Name))
{
string VersionName = release.Tag_Name.ToString().Substring(1, release.Tag_Name.ToString().Length - 1);
comboBox1.Items.Add(VersionName);
//Console.WriteLine($"Name: {release.Name}, Tag Name: {release.Tag_Name}, Published At: {release.Published_At}");
}
}
}
//projectname_textbox.Text = "";
if (comboBox1.Items.Count > 0)
{
comboBox1.SelectedIndex = 0;
}
bool InstalledPhp = false;
bool InstalledComposer = false;
try
{
//\wamp64\bin\php\php8.2.1;
//\wamp64\composer;
//\wamp64\bin\php\php8.2.1;
//\wamp64\bin\php\Composer;
using (RegistryKey key = Registry.LocalMachine.OpenSubKey("SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment"))
{
if (key != null)
{
Object o = key.GetValue("Path");
if (o != null)
{
string[] RegValues = o.ToString().Split(';');
foreach (var RegValue in RegValues)
{
if (RegValue.Contains("php"))
{
InstalledPhp = true;
}
if (RegValue.Contains("composer"))
{
InstalledComposer = true;
}
//Console.WriteLine(RegValue);
}
}
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
if (InstalledPhp != true)
{
buildButton.Enabled = false;
listBox1.Items.Add("Sisteminizde kurulu PHP bulunamadı");
return;
}
//if (InstalledComposer != true)
//{
//buildButton.Enabled = false;
//listBox1.Items.Add("Sisteminizde kurulu Composer bulunamadı");
//return;
//}
}
private void buildButton_Click(object sender, EventArgs e)
{
string projectnameDirectroyName = projectname_textbox.Text;
if (string.IsNullOrEmpty(projectnameDirectroyName))
{
MessageBox.Show("Proje adı giriniz.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Stop);
//listBox1.Items.Add("Proje adı giriniz.");
return;
}
if (Directory.Exists(projectnameDirectroyName))
{
MessageBox.Show("Bu isimde bir proje bulunuyor.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Stop);
//listBox1.Items.Add("Bu isimde bir proje bulunuyor.");
return;
}
listBox1.Items.Add("Laravel v." + comboBox1.Text + " " + projectname_textbox.Text + " adıyla kuruluyor, lütfen bekleyiniz...");
buildButton.Enabled = false;
Process process = new Process();
//process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
// composer create-project laravel/laravel:^9.* project_name
process.StartInfo.FileName = "cmd.exe";
//process.StartInfo.WorkingDirectory = Application.StartupPath;
process.StartInfo.Arguments = "/C composer create-project laravel/laravel:^" + comboBox1.Text + " " + projectname_textbox.Text;
Console.WriteLine("/C composer create-project laravel/laravel:^" + comboBox1.Text + " " + projectname_textbox.Text);
process.StartInfo.CreateNoWindow = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardInput = true;
process.OutputDataReceived += new DataReceivedEventHandler((ss, ee) =>
{
if (!String.IsNullOrEmpty(ee.Data))
{
Console.WriteLine(ee.Data);
}
});
process.Start();
process.BeginOutputReadLine();
process.WaitForExit();
Console.WriteLine(output);
process.WaitForExit();
process.Close();
//Console.WriteLine("\n\nPress any key to exit.");
//Console.ReadLine();
listBox1.Items.Add("Laravel " + comboBox1.Text + " " + projectname_textbox.Text + " adıyla başarıyla kuruldu...");
buildButton.Enabled = true;
ayarlargroupBox.Visible = Enabled;
}
private void WriteAppServiceProvider()
{
string AppServiceProviderPath = Path.Combine(Application.StartupPath, projectname_textbox.Text, "app", "Providers", "AppServiceProvider.php");
if (defaultStringLengthtextBox.Text.Length <= 0)
{
listBox1.Items.Add("Bir defaultstringlength uzunluğu giriniz.");
return;
}
if (string.IsNullOrEmpty(defaultStringLengthtextBox.Text))
{
listBox1.Items.Add("Bir defaultstringlength uzunluğu giriniz.");
return;
}
string DefaultStringLenTextBox = defaultStringLengthtextBox.Text;
int DefaultStringLenInteger;
bool _DefaultStringLenIntegerSuccess = int.TryParse(DefaultStringLenTextBox, out DefaultStringLenInteger);
if (!_DefaultStringLenIntegerSuccess)
{
listBox1.Items.Add("Bir defaultstringlength olarak bir sayısı giriniz.");
return;
}
int DefaultStringLen = int.Parse(DefaultStringLenTextBox);
if (DefaultStringLen <= 0)
{
listBox1.Items.Add("Bir defaultstringlength uzunluğu giriniz.");
return;
}
if (DefaultStringLen > 255)
{
listBox1.Items.Add("Bir defaultstringlength 255den yüksek olamaz.s");
return;
}
if (File.Exists(AppServiceProviderPath))
{
// Dosyanın tüm satırlarını okuyun
string[] satirlar = File.ReadAllLines(AppServiceProviderPath);
// Use
int satirNoUse = 5;
string yazdirilacakMetinUse = "use Illuminate\\Support\\Facades\\Schema;";
// Dosyanın her bir satırını kontrol edin
for (int i = 0; i < satirlar.Length; i++)
{
if (satirlar[i].Contains(yazdirilacakMetinUse))
{
listBox1.Items.Add("use Illuminate\\Support\\Facades\\Schema satırı zaten eklenmiş");
//Console.WriteLine($"Dosyada \"{kontrolMetni}\" metni bulundu. Satır: {i + 1}");
return;
}
}
if (satirNoUse >= 0 && satirNoUse < satirlar.Length)
{
Console.WriteLine(satirlar[satirNoUse]);
satirlar[satirNoUse] = yazdirilacakMetinUse;
//satirlar[satirNoUse + 1] = "\n";
}
else
{
// Hedef satır indeksi geçerli değilse veya dosya yeterince satır içermiyorsa bir hata mesajı yazdırabilirsiniz.
Console.WriteLine("1.Hedef satır indeksi geçerli değil veya dosya yeterince satır içermiyor." + satirlar.Length);
return;
}
// defaultStringLength
int satirNoKod = 21;
string yazdirilacakMetinKod = "Schema::defaultStringLength(" + defaultStringLengthtextBox.Text + ");";
if (satirNoKod >= 0 && satirNoKod < satirlar.Length)
{
Console.WriteLine(satirlar[satirNoKod]);
//satirlar[satirNoKod] = "\n";
satirlar[satirNoKod] = yazdirilacakMetinKod;
//satirlar[satirNoKod + 1] = "\n";
}
else
{
// Hedef satır indeksi geçerli değilse veya dosya yeterince satır içermiyorsa bir hata mesajı yazdırabilirsiniz.
Console.WriteLine("2.Hedef satır indeksi geçerli değil veya dosya yeterince satır içermiyor." + satirlar.Length);
return;
}
// Dosyanın içeriğini güncelleyin
File.WriteAllLines(AppServiceProviderPath, satirlar);
Console.WriteLine("Metin başarıyla hedef satıra yazıldı.");
listBox1.Items.Add("DefaultStringLength " + 191 + " olarak ayarlandı.");
}
else
{
listBox1.Items.Add("AppServiceProvider.php dosyası bulunamadı!");
}
}
private void refreshversion_button_Click(object sender, EventArgs e)
{
if (File.Exists(LocalReleaseFile))
{
File.Delete(LocalReleaseFile);
listBox1.Items.Add("Yerel dosya silindi...");
Console.WriteLine("Uzaktan getir.");
var releasesDiff = GetAllReleases();
var json = JsonConvert.SerializeObject(releasesDiff);
File.WriteAllText(LocalReleaseFile, json);
listBox1.Items.Add("Veriler uzak bağlantıdan getiriliyor.");
Console.WriteLine("Yerelden getir.");
var releasesLocal = GetReleasesFromFile(LocalReleaseFile);
foreach (var release in releasesLocal)
{
if (!string.IsNullOrEmpty(release.Tag_Name))
{
string VersionName = release.Tag_Name.ToString().Substring(1, release.Tag_Name.ToString().Length - 1);
comboBox1.Items.Add(VersionName);
}
}
listBox1.Items.Add("Veriler yerel dosyaya işleniyor.");
}
else
{
MessageBox.Show("Release listesi zaten yok.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Stop);
return;
}
}
private void defaultstringlenaddbutton_Click(object sender, EventArgs e)
{
WriteAppServiceProvider();
}
}
}