Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ookkoouu committed Mar 18, 2024
0 parents commit 344b031
Show file tree
Hide file tree
Showing 19 changed files with 1,679 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
"name": "Go",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/go:1-1.22-bookworm",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "go version",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
17 changes: 17 additions & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create Release PR
on:
push:
branches:
- main

jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: google-github-actions/release-please-action@v4
with:
release-type: go
skip-github-release: true
88 changes: 88 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Created by https://www.toptal.com/developers/gitignore/api/go,windows,macos
# Edit at https://www.toptal.com/developers/gitignore?templates=go,windows,macos

### Go ###
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/go,windows,macos
dist/
tmp/
45 changes: 45 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com

# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

version: 1

before:
hooks:
- go mod tidy
- go generate ./...

builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w -X "cmd.version={{ .Version }}"

archives:
- format: binary
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- replace .Os "darwin" "macos" }}_
{{- if eq .Arch "amd64" }}x64
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
changelog:
use: github
sort: asc
filters:
exclude:
- "^chore:"
- "^test:"
18 changes: 18 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
MIT No Attribution

Copyright 2024 okou

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
80 changes: 80 additions & 0 deletions cmd/install.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
package cmd

import (
"fmt"
"net/url"
"slices"
"strings"

"github.com/ookkoouu/packwiz-install/core"
"github.com/spf13/cobra"
)

// installCmd represents the install command
var installCmd = &cobra.Command{
Use: "install [flags] URL",
Aliases: []string{"i"},
Short: "Install and update modpack",
Args: exactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
// args
packUrl, err := url.ParseRequestURI(args[0])
if err != nil {
return fmt.Errorf("install command requires URL of 'pack.toml'")
}
// flags
hformat, hhash, ok := parseHashFlag(cmd.Flag("hash").Value.String())
if !ok {
return fmt.Errorf("invalid --hash format <HashFormat>:<Hash>")
}

repo, err := core.NewRepository(
packUrl.String(),
core.WithHash(hformat, hhash),
core.WithDir(cmd.Flag("dir").Value.String()),
core.WithProxy(cmd.Flag("proxy").Value.String()),
)
if err != nil {
return fmt.Errorf("%w", err)
}

fmt.Println("URL:", packUrl)
fmt.Println("Hash:", hformat, hhash)
fmt.Println("Dir:", cmd.Flag("dir").Value.String())

err = repo.Install(cmd.Context())
if err != nil {
return fmt.Errorf("install error: %w", err)
}
fmt.Println("Complete.")

return nil
},
}

func init() {
rootCmd.AddCommand(installCmd)

installCmd.Flags().String("hash", "", `Hash of 'pack.toml' in the form of "<format>:<hash>" e.g. "sha256:abc012..."`)
installCmd.Flags().StringP("dir", "d", ".", "Directory to install modpack")
installCmd.Flags().StringP("proxy", "p", ".", `Proxy servier in the form of "<host>:<port>" e.g. "proxy-host.com:8080"`)
}

func parseHashFlag(s string) (format string, hash string, ok bool) {
if s == "" {
return "", "", true
}

h := strings.Split(s, ":")
if !(len(h) >= 2 && h[0] != "" && h[1] != "") {
return "", "", false
}

format = h[0]
hash = h[1]
if !slices.Contains(core.PreferredHashList, format) {
return "", "", false
}

return format, hash, true
}
30 changes: 30 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package cmd

import (
"os"

"github.com/spf13/cobra"
)

var (
version = "dev"
)

// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "packwiz-install",
Short: "A tool to install and update modpack made by packwiz.",
Version: version,
}

func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}

func init() {
rootCmd.SetVersionTemplate("{{.Version}}\n")
rootCmd.Flags().BoolP("version", "v", false, "Print version and quit")
}
28 changes: 28 additions & 0 deletions cmd/x.utils.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package cmd

import (
"fmt"

"github.com/spf13/cobra"
)

func exactArgs(n int) cobra.PositionalArgs {
return func(cmd *cobra.Command, args []string) error {
if len(args) == n {
return nil
}
return fmt.Errorf(
"%q requires exactly %d %s.\n",
cmd.CommandPath(),
n,
pluralize("argument", n),
)
}
}

func pluralize(word string, number int) string {
if number == 1 {
return word
}
return word + "s"
}
Loading

0 comments on commit 344b031

Please sign in to comment.