* model -> public/model * plugin -> public/plugin * public/model/utils -> public/utils * platform/shared/mlog -> public/shared/mlog * platform/shared/i18n -> public/shared/i18n * platform/shared/markdown -> public/shared/markdown * platform/services/timezones -> public/shared/timezones * channels/einterfaces -> einterfaces * expose public/ submodule * go mod tidy * .github: cache-dependency-path, setup-go-work * modules-tidy for public/ too * remove old gomodtidy
81 строка
1.3 KiB
Go
81 строка
1.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package version
|
|
|
|
import (
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type V string
|
|
|
|
func (v V) GreaterThanOrEqualTo(other V) bool {
|
|
return !v.LessThan(other)
|
|
}
|
|
|
|
func (v V) LessThan(other V) bool {
|
|
leftParts, leftCount := split(v)
|
|
rightParts, rightCount := split(other)
|
|
|
|
var length int
|
|
if leftCount < rightCount {
|
|
length = rightCount
|
|
} else {
|
|
length = leftCount
|
|
}
|
|
|
|
for i := 0; i < length; i++ {
|
|
var left, right string
|
|
|
|
if i < leftCount {
|
|
left = leftParts[i]
|
|
}
|
|
|
|
if i < rightCount {
|
|
right = rightParts[i]
|
|
}
|
|
|
|
if left == right {
|
|
continue
|
|
}
|
|
|
|
leftInt := parseInt(left)
|
|
rightInt := parseInt(right)
|
|
|
|
isNumericalComparison := leftInt != nil && rightInt != nil
|
|
|
|
if isNumericalComparison {
|
|
return *leftInt < *rightInt
|
|
}
|
|
|
|
return left < right
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func split(v V) ([]string, int) {
|
|
var chunks []string
|
|
|
|
for _, part := range strings.Split(string(v), ".") {
|
|
chunks = append(chunks, splitNumericalChunks(part)...)
|
|
}
|
|
|
|
return chunks, len(chunks)
|
|
}
|
|
|
|
var numericalOrAlphaRE = regexp.MustCompile(`(\d+|\D+)`)
|
|
|
|
func splitNumericalChunks(s string) []string {
|
|
return numericalOrAlphaRE.FindAllString(s, -1)
|
|
}
|
|
|
|
func parseInt(s string) *int64 {
|
|
if n, err := strconv.ParseInt(s, 10, 64); err == nil {
|
|
return &n
|
|
}
|
|
return nil
|
|
}
|