chore: tweak version utils

This commit is contained in:
Steven 2024-08-26 22:52:58 +08:00
parent 643a6051b2
commit ff035d25ba
9 changed files with 25 additions and 26 deletions

View File

@ -25,7 +25,7 @@ jobs:
- name: golangci-lint - name: golangci-lint
uses: golangci/golangci-lint-action@v6 uses: golangci/golangci-lint-action@v6
with: with:
version: v1.54.1 version: v1.56.1
args: --verbose --timeout=3m args: --verbose --timeout=3m
skip-cache: true skip-cache: true

View File

@ -19,12 +19,7 @@ issues:
include: include:
# https://golangci-lint.run/usage/configuration/#command-line-options # https://golangci-lint.run/usage/configuration/#command-line-options
exclude: exclude:
- Rollback
- logger.Sync
- pgInstance.Stop
- fmt.Printf - fmt.Printf
- Enter(.*)_(.*)
- Exit(.*)_(.*)
linters-settings: linters-settings:
goimports: goimports:
@ -69,6 +64,10 @@ linters-settings:
disabled: true disabled: true
- name: var-naming - name: var-naming
disabled: true disabled: true
- name: unchecked-type-assertion
disabled: true
- name: max-control-nesting
disabled: true
- name: exported - name: exported
arguments: arguments:
- "disableStutteringCheck" - "disableStutteringCheck"

View File

@ -13,9 +13,9 @@ import (
"github.com/spf13/viper" "github.com/spf13/viper"
"github.com/yourselfhosted/slash/server" "github.com/yourselfhosted/slash/server"
"github.com/yourselfhosted/slash/server/common"
"github.com/yourselfhosted/slash/server/metric" "github.com/yourselfhosted/slash/server/metric"
"github.com/yourselfhosted/slash/server/profile" "github.com/yourselfhosted/slash/server/profile"
"github.com/yourselfhosted/slash/server/version"
"github.com/yourselfhosted/slash/store" "github.com/yourselfhosted/slash/store"
"github.com/yourselfhosted/slash/store/db" "github.com/yourselfhosted/slash/store/db"
) )
@ -35,7 +35,7 @@ var (
Data: viper.GetString("data"), Data: viper.GetString("data"),
DSN: viper.GetString("dsn"), DSN: viper.GetString("dsn"),
Driver: viper.GetString("driver"), Driver: viper.GetString("driver"),
Version: version.GetCurrentVersion(viper.GetString("mode")), Version: common.GetCurrentVersion(viper.GetString("mode")),
} }
if err := serverProfile.Validate(); err != nil { if err := serverProfile.Validate(); err != nil {
panic(err) panic(err)

View File

@ -98,7 +98,7 @@ func newMockServer(t *testing.T, code, accessToken string, userinfo []byte) *htt
}) })
require.NoError(t, err) require.NoError(t, err)
}) })
mux.HandleFunc("/oauth2/userinfo", func(w http.ResponseWriter, r *http.Request) { mux.HandleFunc("/oauth2/userinfo", func(w http.ResponseWriter, _ *http.Request) {
w.Header().Set("Content-Type", "application/json") w.Header().Set("Content-Type", "application/json")
_, err := w.Write(userinfo) _, err := w.Write(userinfo)
require.NoError(t, err) require.NoError(t, err)

View File

@ -1,4 +1,4 @@
package version package common
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package version package common
import ( import (
"sort" "sort"

View File

@ -11,7 +11,7 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/yourselfhosted/slash/server/version" "github.com/yourselfhosted/slash/server/common"
"github.com/yourselfhosted/slash/store" "github.com/yourselfhosted/slash/store"
) )
@ -68,7 +68,7 @@ func (d *DB) nonProdMigrate(ctx context.Context) error {
} }
func (d *DB) prodMigrate(ctx context.Context) error { func (d *DB) prodMigrate(ctx context.Context) error {
currentVersion := version.GetCurrentVersion(d.profile.Mode) currentVersion := common.GetCurrentVersion(d.profile.Mode)
migrationHistoryList, err := d.ListMigrationHistories(ctx, &store.FindMigrationHistory{}) migrationHistoryList, err := d.ListMigrationHistories(ctx, &store.FindMigrationHistory{})
// If there is no migration history, we should apply the latest schema. // If there is no migration history, we should apply the latest schema.
if err != nil || len(migrationHistoryList) == 0 { if err != nil || len(migrationHistoryList) == 0 {
@ -94,17 +94,17 @@ func (d *DB) prodMigrate(ctx context.Context) error {
for _, migrationHistory := range migrationHistoryList { for _, migrationHistory := range migrationHistoryList {
migrationHistoryVersionList = append(migrationHistoryVersionList, migrationHistory.Version) migrationHistoryVersionList = append(migrationHistoryVersionList, migrationHistory.Version)
} }
sort.Sort(version.SortVersion(migrationHistoryVersionList)) sort.Sort(common.SortVersion(migrationHistoryVersionList))
latestMigrationHistoryVersion := migrationHistoryVersionList[len(migrationHistoryVersionList)-1] latestMigrationHistoryVersion := migrationHistoryVersionList[len(migrationHistoryVersionList)-1]
// If the latest migration history version is greater than or equal to the current version, we will not apply any migration. // If the latest migration history version is greater than or equal to the current version, we will not apply any migration.
if !version.IsVersionGreaterThan(version.GetSchemaVersion(currentVersion), latestMigrationHistoryVersion) { if !common.IsVersionGreaterThan(common.GetSchemaVersion(currentVersion), latestMigrationHistoryVersion) {
return nil return nil
} }
println("start migrate") println("start migrate")
for _, minorVersion := range getMinorVersionList() { for _, minorVersion := range getMinorVersionList() {
normalizedVersion := minorVersion + ".0" normalizedVersion := minorVersion + ".0"
if version.IsVersionGreaterThan(normalizedVersion, latestMigrationHistoryVersion) && version.IsVersionGreaterOrEqualThan(currentVersion, normalizedVersion) { if common.IsVersionGreaterThan(normalizedVersion, latestMigrationHistoryVersion) && common.IsVersionGreaterOrEqualThan(currentVersion, normalizedVersion) {
println("applying migration for", normalizedVersion) println("applying migration for", normalizedVersion)
if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil { if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil {
return errors.Wrap(err, "failed to apply minor version migration") return errors.Wrap(err, "failed to apply minor version migration")
@ -166,6 +166,6 @@ func getMinorVersionList() []string {
panic(err) panic(err)
} }
sort.Sort(version.SortVersion(minorVersionList)) sort.Sort(common.SortVersion(minorVersionList))
return minorVersionList return minorVersionList
} }

View File

@ -12,7 +12,7 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/yourselfhosted/slash/server/version" "github.com/yourselfhosted/slash/server/common"
"github.com/yourselfhosted/slash/store" "github.com/yourselfhosted/slash/store"
) )
@ -24,7 +24,7 @@ var seedFS embed.FS
// Migrate applies the latest schema to the database. // Migrate applies the latest schema to the database.
func (d *DB) Migrate(ctx context.Context) error { func (d *DB) Migrate(ctx context.Context) error {
currentVersion := version.GetCurrentVersion(d.profile.Mode) currentVersion := common.GetCurrentVersion(d.profile.Mode)
if d.profile.Mode == "prod" { if d.profile.Mode == "prod" {
_, err := os.Stat(d.profile.DSN) _, err := os.Stat(d.profile.DSN)
if err != nil { if err != nil {
@ -50,7 +50,7 @@ func (d *DB) Migrate(ctx context.Context) error {
} }
// If no migration history, we should apply the latest version migration and upsert the migration history. // If no migration history, we should apply the latest version migration and upsert the migration history.
if len(migrationHistoryList) == 0 { if len(migrationHistoryList) == 0 {
minorVersion := version.GetMinorVersion(currentVersion) minorVersion := common.GetMinorVersion(currentVersion)
if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil { if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil {
return errors.Wrapf(err, "failed to apply version %s migration", minorVersion) return errors.Wrapf(err, "failed to apply version %s migration", minorVersion)
} }
@ -67,10 +67,10 @@ func (d *DB) Migrate(ctx context.Context) error {
for _, migrationHistory := range migrationHistoryList { for _, migrationHistory := range migrationHistoryList {
migrationHistoryVersionList = append(migrationHistoryVersionList, migrationHistory.Version) migrationHistoryVersionList = append(migrationHistoryVersionList, migrationHistory.Version)
} }
sort.Sort(version.SortVersion(migrationHistoryVersionList)) sort.Sort(common.SortVersion(migrationHistoryVersionList))
latestMigrationHistoryVersion := migrationHistoryVersionList[len(migrationHistoryVersionList)-1] latestMigrationHistoryVersion := migrationHistoryVersionList[len(migrationHistoryVersionList)-1]
if version.IsVersionGreaterThan(version.GetSchemaVersion(currentVersion), latestMigrationHistoryVersion) { if common.IsVersionGreaterThan(common.GetSchemaVersion(currentVersion), latestMigrationHistoryVersion) {
minorVersionList := getMinorVersionList() minorVersionList := getMinorVersionList()
// backup the raw database file before migration // backup the raw database file before migration
rawBytes, err := os.ReadFile(d.profile.DSN) rawBytes, err := os.ReadFile(d.profile.DSN)
@ -85,7 +85,7 @@ func (d *DB) Migrate(ctx context.Context) error {
println("start migrate") println("start migrate")
for _, minorVersion := range minorVersionList { for _, minorVersion := range minorVersionList {
normalizedVersion := minorVersion + ".0" normalizedVersion := minorVersion + ".0"
if version.IsVersionGreaterThan(normalizedVersion, latestMigrationHistoryVersion) && version.IsVersionGreaterOrEqualThan(currentVersion, normalizedVersion) { if common.IsVersionGreaterThan(normalizedVersion, latestMigrationHistoryVersion) && common.IsVersionGreaterOrEqualThan(currentVersion, normalizedVersion) {
println("applying migration for", normalizedVersion) println("applying migration for", normalizedVersion)
if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil { if err := d.applyMigrationForMinorVersion(ctx, minorVersion); err != nil {
return errors.Wrap(err, "failed to apply minor version migration") return errors.Wrap(err, "failed to apply minor version migration")
@ -228,6 +228,6 @@ func getMinorVersionList() []string {
panic(err) panic(err)
} }
sort.Sort(version.SortVersion(minorVersionList)) sort.Sort(common.SortVersion(minorVersionList))
return minorVersionList return minorVersionList
} }

View File

@ -8,8 +8,8 @@ import (
"github.com/joho/godotenv" "github.com/joho/godotenv"
"github.com/yourselfhosted/slash/server/common"
"github.com/yourselfhosted/slash/server/profile" "github.com/yourselfhosted/slash/server/profile"
"github.com/yourselfhosted/slash/server/version"
) )
func getUnusedPort() int { func getUnusedPort() int {
@ -45,7 +45,7 @@ func GetTestingProfile(t *testing.T) *profile.Profile {
Data: dir, Data: dir,
DSN: dsn, DSN: dsn,
Driver: driver, Driver: driver,
Version: version.GetCurrentVersion(mode), Version: common.GetCurrentVersion(mode),
} }
} }