Skip to content

Commit

Permalink
Added step 1 and step 2 root.go
Browse files Browse the repository at this point in the history
added step 1 and step 2 need to work on docker client for go
  • Loading branch information
Makergear25 authored Jun 4, 2024
1 parent ed1a8e1 commit 5a3a2b3
Showing 1 changed file with 174 additions and 0 deletions.
174 changes: 174 additions & 0 deletions root.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
/*
Copyright © 2024 Nestri <>
*/
package cmd

import (
_ "embed"
"fmt"
"os"
"os/exec"
"runtime"
"strings"

"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/lipgloss/table"
"github.com/muesli/termenv"
"github.com/spf13/cobra"
)

//go:embed nestri.ascii
var art string

// rootCmd represents the base command when called without any subcommands
// For a good reference point, start here: https://github.com/charmbracelet/taskcli/blob/main/cmds.go
var rootCmd = &cobra.Command{
Use: "nestri",
Short: "A CLI tool to manage your cloud gaming service",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}

// this is for the "nestri neofetch" subcommand, has no arguments
var neoFetchCmd = &cobra.Command{
Use: "neofetch",
Short: "Show important system information",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
lipgloss.SetColorProfile(termenv.TrueColor)

baseStyle := lipgloss.NewStyle().
PaddingTop(1).
PaddingRight(4).
PaddingBottom(1).
PaddingLeft(4)

var (
b strings.Builder
lines = strings.Split(art, "\n")
colors = []string{"#F8481C", "#F74127", "#F53B30", "#F23538", "#F02E40"}
step = len(lines) / len(colors)
)

for i, l := range lines {
n := clamp(0, len(colors)-1, i/step)
b.WriteString(colorize(colors[n], l))
b.WriteRune('\n')
}

t := table.New().
Border(lipgloss.HiddenBorder())

t.Row(baseStyle.Render(b.String()), baseStyle.Render("System Info goes here"))

fmt.Print(t)

return nil
},
}

// this is the "nestri run" subcommand, takes no arguments for now
var runCmd = &cobra.Command{
Use: "run",
Short: "Run a game using nestri",
RunE: func(cmd *cobra.Command, args []string) error {
if runtime.GOOS != "linux" {
//make sure os is linux
fmt.Println("This command is only supported on Linux.")
return nil
}
//get linux version
versionCmd := exec.Command("grep", "VERSION", "/etc/os-release")
versionOutput, err := versionCmd.CombinedOutput()
if err != nil {
return fmt.Errorf("error getting linux version: %v\n", err)
}
fmt.Printf("Linux version:\n%s\n", string(versionOutput))

//Step 1: change to games dir
fmt.Println("changing to game dir.") //this is a temp command for debug as well as leads to a hardcoded dir

HomeDir, err := os.UserHomeDir()
if err != nil {
return fmt.Errorf("error getting home directory %v\n", err)
}

err = os.Chdir(fmt.Sprintf("%s/games", HomeDir))
if err != nil {
return fmt.Errorf("error chaning directory: %v\n", err)
}
//verify we are in game dir
dir, err := os.Getwd()
if err != nil {
return fmt.Errorf("error getting current directory: %v\n", err)
}
fmt.Printf("Current directory: %s\n\n", dir)

//list games dir
listDir := exec.Command("ls", "-la", ".")
listDirOutput, err := listDir.CombinedOutput()
if err != nil {
return fmt.Errorf("error listing games: %v\n", err)

}
fmt.Printf("List of Games: \n%s\n", listDirOutput)

//step 2: Generate a Session ID
//generate id
SID := exec.Command("bash", "-c", "head /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | head -c 16")
//save output to variable
output, err := SID.Output()
if err != nil {
return fmt.Errorf("Error generating Session ID: %v\n", err)
}
sessionID := string(output)
fmt.Printf("Your Session ID is: %s\n", sessionID)

return nil
},
}

// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}

func init() {
rootCmd.AddCommand(neoFetchCmd)

rootCmd.AddCommand(runCmd)

//If you want to add subcommands to run for example "netri run -fsr" do it like this
// runCmd.Flags().BoolP("fsr", "f", false, "Run the Game with FSR enabled or not")
}

func colorize(c, s string) string {
return lipgloss.NewStyle().Foreground(lipgloss.Color(c)).Render(s)
}

func clamp(v, low, high int) int {
if high < low {
low, high = high, low
}
return min(high, max(low, v))
}

func min(a, b int) int {
if a < b {
return a
}
return b
}

func max(a, b int) int {
if a > b {
return a
}
return b
}

0 comments on commit 5a3a2b3

Please sign in to comment.