Compare commits

...

11 commits
v0.1.5 ... main

Author SHA1 Message Date
328cf7bf3c
make lambdas static where possible 2024-11-10 10:53:23 +01:00
e09cfbffdd
fix missing default values 2024-10-25 11:14:10 +02:00
a7166a5422
fallback on sh -c for unknown scripts extensions 2024-10-25 09:33:47 +02:00
1f67585c82
handle nushell scripts out of the box 2024-10-25 09:33:47 +02:00
e1e6a384c0
use appropriate elevation verb bases on OS 2024-10-25 00:15:35 +02:00
dependabot[bot]
28e67d7d28
NuGet(deps): Bump Spectre.Console.Cli from 0.48.0 to 0.49.1 in /src (#14)
Bumps [Spectre.Console.Cli](https://github.com/spectreconsole/spectre.console) from 0.48.0 to 0.49.1.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.48.0...0.49.1)

---
updated-dependencies:
- dependency-name: Spectre.Console.Cli
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 10:20:40 +02:00
dependabot[bot]
3ddd341a29
NuGet(deps): Bump Spectre.Console from 0.48.0 to 0.49.1 in /src (#13)
Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.48.0 to 0.49.1.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.48.0...0.49.1)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 09:19:26 +02:00
dependabot[bot]
e6a28de9d6
Github Actions(deps): Bump github/codeql-action from 2 to 3 (#11)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-18 09:27:43 +01:00
dependabot[bot]
b1bb37abe3
NuGet(deps): Bump Spectre.Console.Cli from 0.47.0 to 0.48.0 in /src (#9)
Bumps [Spectre.Console.Cli](https://github.com/spectreconsole/spectre.console) from 0.47.0 to 0.48.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.47.0...0.48.0)

---
updated-dependencies:
- dependency-name: Spectre.Console.Cli
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-27 09:31:49 +01:00
dependabot[bot]
486937cb62
NuGet(deps): Bump Spectre.Console from 0.47.0 to 0.48.0 in /src (#10)
Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.47.0 to 0.48.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.47.0...0.48.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-27 09:25:52 +01:00
f9ee5ba611 add Directory.Build.Props to use simplified build output 2023-11-14 19:29:36 +01:00
8 changed files with 97 additions and 76 deletions

View file

@ -25,16 +25,16 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v3
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality # queries: security-extended,security-and-quality
- name: Autobuild - name: Autobuild
uses: github/codeql-action/autobuild@v2 uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v3
with: with:
category: "/language:${{matrix.language}}" category: "/language:${{matrix.language}}"

5
Directory.Build.props Normal file
View file

@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
</PropertyGroup>
</Project>

View file

@ -33,18 +33,19 @@ _**NOTE**_: The option `-p:PublishTrimmed=true` may produce some *warnings*. If
```sh ```sh
USAGE: USAGE:
scrl <path> [OPTIONS] scrl [path] [OPTIONS]
ARGUMENTS: ARGUMENTS:
<path> Starting directory (Default: .) [path] Starting directory (Default: .)
OPTIONS: OPTIONS:
-h, --help Prints help information DEFAULT
-x, --extensions Comma separated list of script extensions -h, --help Prints help information
-d, --depth Search depth -x, --extensions <EXTENSIONS> List of script extensions to search for
-e, --elevated Run with elevated privileges -d, --depth 3 Search depth
-g, --group Group scripts by folder -e, --elevated Run with elevated privileges
-b, --brief Show brief information -g, --group Group scripts by folder
-b, --brief Show brief information
``` ```
[CLI]: https://docs.microsoft.com/en-us/dotnet/core/tools/ ".NET CLI Docs" [CLI]: https://docs.microsoft.com/en-us/dotnet/core/tools/ ".NET CLI Docs"

View file

@ -1,5 +1,5 @@
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using Spectre.Console; using Spectre.Console;
using Spectre.Console.Cli; using Spectre.Console.Cli;
@ -76,27 +76,30 @@ public sealed class RootCommand : AsyncCommand<RootCommandSettings>
public sealed class RootCommandSettings : CommandSettings public sealed class RootCommandSettings : CommandSettings
{ {
[Description("Comma separated list of script extensions")] [Description("List of script extensions to search for")]
[CommandOption("-x|--extensions")] [CommandOption("-x|--extensions <EXTENSIONS>")]
public string? Extensions { get; init; } [SuppressMessage("Performance", "CA1819:Properties should not return arrays")]
public string[] Extensions { get; init; } = [".ps1", ".*sh", ".bat", ".cmd", ".nu"];
[Description("Search depth")] [Description("Search depth")]
[CommandOption("-d|--depth")] [CommandOption("-d|--depth")]
public int Depth { get; init; } = 1; [DefaultValue(3)]
public int Depth { get; init; }
[Description("Run with elevated privileges")] [Description("Run with elevated privileges")]
[CommandOption("-e|--elevated")] [CommandOption("-e|--elevated")]
public bool Elevated { get; init; } = false; public bool Elevated { get; init; }
[Description("Group scripts by folder")] [Description("Group scripts by folder")]
[CommandOption("-g|--group")] [CommandOption("-g|--group")]
public bool Group { get; init; } = false; public bool Group { get; init; }
[Description("Show brief information")] [Description("Show brief information")]
[CommandOption("-b|--brief")] [CommandOption("-b|--brief")]
public bool Brief { get; init; } = false; public bool Brief { get; init; }
[Description("Starting directory (Default: .)")] [Description("Starting directory (Default: .)")]
[CommandArgument(0, "<path>")] [CommandArgument(0, "[path]")]
public string Directory { get; init; } = "."; [DefaultValue(".")]
} public string Directory { get; init; } = string.Empty;
}

View file

@ -2,5 +2,6 @@ using ScriptLauncher;
using Spectre.Console.Cli; using Spectre.Console.Cli;
var app = new CommandApp<RootCommand>(); var app = new CommandApp<RootCommand>();
app.Configure(x => x.SetApplicationName("scrl")); app.Configure(static x => x.SetApplicationName("scrl"));
return app.Run(args); return app.Run(args);

View file

@ -26,36 +26,55 @@ internal static class ScriptExecutor
).ConfigureAwait(ConfigureAwaitOptions.None); ).ConfigureAwait(ConfigureAwaitOptions.None);
} }
private static ProcessStartInfo? GetExecutableProcessInfo(FileInfo file, bool elevated) => private static string GetElevationVerb(bool elevated)
file.Extension switch {
if (!elevated)
{ {
".bat" return string.Empty;
or ".cmd" }
=> new ProcessStartInfo
{ var platform = Environment.OSVersion.Platform;
FileName = "cmd", return platform switch
Arguments = $"/Q /C .\\{file.Name}", {
Verb = elevated ? "runas /user:Administrator" : string.Empty, PlatformID.Win32NT => "runas /user:Administrator",
WorkingDirectory = file.DirectoryName PlatformID.Unix or PlatformID.MacOSX => "sudo",
}, _ => string.Empty,
".ps1"
=> new ProcessStartInfo
{
FileName = "powershell.exe",
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File .\\{file.Name}",
Verb = elevated ? "runas /user:Administrator" : string.Empty,
WorkingDirectory = file.DirectoryName
},
".sh"
or ".zsh"
or ".fish"
=> new ProcessStartInfo
{
FileName = "sh",
Arguments = $"-c ./{file.Name}",
Verb = elevated ? "sudo" : string.Empty,
WorkingDirectory = file.DirectoryName
},
_ => null
}; };
}
private static ProcessStartInfo? GetExecutableProcessInfo(FileInfo file, bool elevated)
{
var verb = GetElevationVerb(elevated);
return file.Extension switch
{
".bat" or ".cmd" => new ProcessStartInfo
{
FileName = "cmd",
Arguments = $"/Q /C ./{file.Name}",
Verb = verb,
WorkingDirectory = file.DirectoryName,
},
".ps1" => new ProcessStartInfo
{
FileName = "powershell.exe",
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File ./{file.Name}",
Verb = verb,
WorkingDirectory = file.DirectoryName,
},
".nu" => new ProcessStartInfo
{
FileName = "nu",
Arguments = $"--no-config-file ./{file.Name}",
Verb = verb,
WorkingDirectory = file.DirectoryName,
},
_ => new ProcessStartInfo
{
FileName = "sh",
Arguments = $"-c ./{file.Name}",
Verb = verb,
WorkingDirectory = file.DirectoryName,
},
};
}
} }

View file

@ -2,23 +2,15 @@ namespace ScriptLauncher;
internal readonly struct ScriptFinder internal readonly struct ScriptFinder
{ {
private static readonly string[] DefaultExtensions = new[] { ".ps1", ".*sh", ".bat", ".cmd" }; public IEnumerable<string> Extensions { get; }
private static readonly char[] DefaultSeparators = new[] { ',', ' ' };
public string[] Extensions { get; }
public string RootDirectory { get; } public string RootDirectory { get; }
public int Depth { get; } private int Depth { get; }
private readonly EnumerationOptions _options; private readonly EnumerationOptions _options;
public ScriptFinder(string? extensions, string directory, int depth) public ScriptFinder(IEnumerable<string> extensions, string directory, int depth)
{ {
Extensions = Extensions = extensions.ToHashSet().Select(static x => $".{x.TrimStart('.')}");
extensions
?.Split(DefaultSeparators, StringSplitOptions.RemoveEmptyEntries)
.ToHashSet()
.Select(x => $".{x.TrimStart('.')}")
.ToArray() ?? DefaultExtensions;
Depth = depth; Depth = depth;
RootDirectory = directory; RootDirectory = directory;
@ -36,7 +28,7 @@ internal readonly struct ScriptFinder
try try
{ {
var filenames = Directory.GetFiles(RootDirectory, $"*{extension}", _options); var filenames = Directory.GetFiles(RootDirectory, $"*{extension}", _options);
return filenames.Select(x => new FileInfo(x)); return filenames.Select(static x => new FileInfo(x));
} }
catch (UnauthorizedAccessException) catch (UnauthorizedAccessException)
{ {
@ -45,13 +37,13 @@ internal readonly struct ScriptFinder
} }
public FileInfo[] GetScripts() => public FileInfo[] GetScripts() =>
Extensions.Select(GetScriptFilesWithExtension).SelectMany(x => x).ToArray(); Extensions.Select(GetScriptFilesWithExtension).SelectMany(static x => x).ToArray();
public IDictionary<DirectoryInfo, FileInfo[]> GetScriptsByDirectory() => public IDictionary<DirectoryInfo, FileInfo[]> GetScriptsByDirectory() =>
Extensions Extensions
.Select(GetScriptFilesWithExtension) .Select(GetScriptFilesWithExtension)
.SelectMany(x => x) .SelectMany(static x => x)
.GroupBy(x => x.DirectoryName!) .GroupBy(static x => x.DirectoryName!)
.OrderBy(x => x.Key) .OrderBy(static x => x.Key)
.ToDictionary(x => new DirectoryInfo(x.Key), x => x.ToArray()); .ToDictionary(static x => new DirectoryInfo(x.Key), static x => x.ToArray());
} }

View file

@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<AnalysisMode>All</AnalysisMode> <AnalysisMode>All</AnalysisMode>
<Version>0.1.5</Version> <Version>0.1.7</Version>
<PackAsTool>true</PackAsTool> <PackAsTool>true</PackAsTool>
<Description>Tool to find and exec shell scripts</Description> <Description>Tool to find and exec shell scripts</Description>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
@ -14,8 +14,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.47.0" /> <PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" /> <PackageReference Include="Spectre.Console.Cli" Version="0.49.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>