resolver-cli 0.1.2

Resolver is a CLI tool that enable developers to scaffold projects for different development purpose, tools and programming languages.
Documentation
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
use std::fs;
use std::io::Error as OutputError;
use std::process::{Command, Output};
use std::error::Error;

// -------------------
// Checker functions
// -------------------
pub fn is_node_installed() -> bool {
    let output = Command::new("node")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_npm_installed() -> bool {
    let output = Command::new("npm")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_nestjs_installed() -> bool {
    let output = Command::new("nest")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_php_installed() -> bool {
    let output = Command::new("php")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_composer_installed() -> bool {
    let output = Command::new("composer")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_scarb_installed() -> bool {
    let output = Command::new("scarb")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_forge_installed() -> bool {
    let output = Command::new("forge")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_python_installed() -> bool {
    //TODO: Check for python3 for macos
    let output = Command::new("python3")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_pip_installed() -> bool {
    let output = Command::new("pip3")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_starkli_installed() -> bool {
    let output = Command::new("starkli")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_brew_installed() -> bool {
    let output = Command::new("brew")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_choco_installed() -> bool {
    let output = Command::new("choco")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn is_nargo_installed() -> bool {
    let output = Command::new("noirup")
        .arg("--version")
        .output();

    check_output(output)
}

pub fn get_os() -> String {
    let os_family = std::env::consts::OS;

    os_family.to_string()
}

fn check_output(output: Result<Output, OutputError>) -> bool {
    match output {
        Ok(output) => {
            if output.status.success() {
                true
            } else {
                false
            }
        },
        _ => false
    }
}


// -------------------
// Scaffold functions
// -------------------
pub fn create_react_app(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        Command::new("npx")
            .args(["create-react-app", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_react_app_with_typescript(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        Command::new("npx")
            .args(["create-react-app", project_name.as_str(), "--template", "typescript"])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_hardhat_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        fs::create_dir_all(project_name.as_str())?;

        Command::new("npm")
            .args(["init", "--yes"])
            .current_dir(project_name.as_str())
            .spawn()?
            .wait()?;

        Command::new("npx")
            .args(["hardhat", "init"])
            .current_dir(project_name.as_str())
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_nestjs_app(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_nestjs_installed() {
        if !is_npm_installed() {
            return  Err("You don't have npm installed".into());
        }

        Command::new("npm")
            .args(["i", "-g", "@nestjs/cli"])
            .spawn()?
            .wait()?;
    }

    Command::new("nest")
        .args(["new", project_name.as_str()])
        .spawn()?
        .wait()?;

    Ok(())
}

pub fn create_laravel_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_php_installed() && !is_composer_installed() {
        return  Err("You don't have PHP or Composer installed".into());
    } else {
        println!("Creating Laravel project: {}", project_name);

        Command::new("composer")
            .args(["create-project", "laravel/laravel", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_next_app(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        Command::new("npx")
            .args(["create-next-app@latest", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_new_foundry_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_forge_installed() {
        return  Err("You don't have Forge installed".into());
    } else {
        Command::new("forge")
            .args(["init", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_django_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_python_installed() && !is_pip_installed() {
        return  Err("You don't have Python installed".into());
    } else {
        Command::new("django-admin")
            .args(["startproject", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_vue_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        Command::new("npm")
            .args(["create", "vue@latest", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_vite_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_npm_installed() {
        return  Err("You don't have npm installed".into());
    } else {
        Command::new("npm")
            .args(["create", "vite@latest", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_noir_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_nargo_installed() {
        return  Err("You don't have nargo installed".into());
    } else {
        Command::new("nargo")
            .args(["new", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

pub fn create_starknet_foundry_project(project_name: String) -> Result<(), Box<dyn Error>> {
    if !is_forge_installed() {
        return  Err("You don't have Forge installed".into());
    } else {
        Command::new("snforge")
            .args(["init", project_name.as_str()])
            .spawn()?
            .wait()?;

        Ok(())
    }
}

// -------------------
// Installer functions
// -------------------

pub fn install_brew() -> Result<(), Box<dyn Error>> {
    println!("Installing Homebrew...");

    let script_url = "https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh";
    let command = format!("curl -fsSL {} | /bin/bash", script_url);

    Command::new("sh")
        .arg("-c")
        .arg(command)
        .output()?;

    Ok(())
}

pub fn install_choco() -> Result<(), Box<dyn Error>> {
    println!("Installing Chocolatey...");

    let powershell_script = r#"
        Set-ExecutionPolicy Bypass -Scope Process -Force;
        [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;
        iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
    "#;

    Command::new("powershell")
        .arg("-Command")
        .arg(powershell_script)
        .output()?;

    Ok(())
}

pub fn install_node() -> Result<(), Box<dyn Error>> {
    println!("Installing the Latest Version of Node...");

    // let os_family = std::env::consts::OS;
    let os_family = get_os();

    match os_family.as_str() {
        "linux" => install_node_linux(),
        "windows" => install_node_windows(),
        "macos" => install_node_macos(),
        _ => panic!("Unsupported OS")
    }
}

pub fn install_node_linux() -> Result<(), Box<dyn Error>> {
    println!("Installing Node.js on Linux...");

    Command::new("sudo")
        .arg("apt-get")
        .args(["update"])
        .status()?;

    Command::new("sudo")
        .arg("apt-get")
        .args(["install", "-y", "nodejs"])
        .status()?;

    Ok(())
}

pub fn install_node_macos() -> Result<(), Box<dyn Error>> {
    println!("Installing Node.js on macOS...");

    if is_brew_installed() {
        Command::new("brew")
            .args(["install", "node"])
            .status()?;
    }

    Ok(())
}

pub fn install_node_windows() -> Result<(), Box<dyn Error>> {
    println!("Installing Node.js on Windows...");

    if is_choco_installed() {
        Command::new("choco")
            .args(["install", "nodejs", "-y"])
            .status()?;
    }

    Ok(())
}

pub fn install_scarb() -> Result<(), Box<dyn Error>> {
    println!("Installing the Latest Version of Scarb...");

    let install_cmd = "curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh";

    Command::new("sh")
        .arg("-c")
        .arg(install_cmd)
        .output()?;

    Ok(())
}

pub fn install_starkli() -> Result<(), Box<dyn Error>> {
    println!("Installing the Latest Version of Starkli...");

    Command::new("sh")
        .arg("-c")
        .arg("curl https://get.starkli.sh | sh")
        .output()?;

    Command::new("sh")
        .arg("-c")
        .arg("starkliup")
        .output()?;

    Ok(())
}

pub fn install_composer() {}

pub fn install_forge() -> Result<(), Box<dyn Error>> {
    println!("Installing the Latest Version of Foundry...");

    Command::new("sh")
        .arg("-c")
        .arg("curl -L https://foundry.paradigm.xyz | bash")
        .output()?;

    Command::new("sh")
        .arg("-c")
        .arg("foundryup")
        .output()?;

    Ok(())
}


pub fn install_nargo() -> Result<(), Box<dyn Error>> {
    println!("Installing the Latest Version of Noir...");

    Command::new("sh")
        .arg("-c")
        .arg("curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash")
        .output()?;

    Command::new("sh")
        .arg("-c")
        .arg("noirup")
        .output()?;

    Ok(())
}

pub fn install_snforge(version: String) -> Result<(), Box<dyn Error>> {
    if version.eq("latest") {
        println!("Installing the Latest Version of Starknet Foundry, Please wait...");

        Command::new("sh")
            .arg("-c")
            .arg("curl -L https://raw.githubusercontent.com/foundry-rs/starknet-foundry/master/scripts/install.sh | sh")
            .output()?;

        Command::new("sh")
            .arg("-c")
            .arg("snfoundryup")
            .output()?;

        Ok(())
    } else {
        println!("Installing Version {} of Starknet Foundry, Please wait...", version);

        Command::new("sh")
            .args(["-c", "curl -L https://raw.githubusercontent.com/foundry-rs/starknet-foundry/master/scripts/install.sh | sh"])
            .output()?;

        Command::new("sh")
            .args(["-c", "snfoundryup", "-v", version.as_str()])
            .output()?;

        Ok(())
    }

}