2019-03-21 00:14:37 +00:00
|
|
|
package loop
|
|
|
|
|
|
|
|
// Copyright (c) 2013-2017 The btcsuite developers
|
|
|
|
// Copyright (c) 2015-2016 The Decred developers
|
|
|
|
// Heavily inspired by https://github.com/btcsuite/btcd/blob/master/version.go
|
2020-03-13 23:02:31 +00:00
|
|
|
// Copyright (C) 2015-2020 The Lightning Network Developers
|
2019-03-21 00:14:37 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Commit stores the current commit hash of this build, this should be set
|
|
|
|
// using the -ldflags during compilation.
|
|
|
|
var Commit string
|
|
|
|
|
2020-11-06 09:43:01 +00:00
|
|
|
// semanticAlphabet is the allowed characters from the semantic versioning
|
|
|
|
// guidelines for pre-release version and build metadata strings. In particular
|
|
|
|
// they MUST only contain characters in semanticAlphabet.
|
2019-03-21 00:14:37 +00:00
|
|
|
const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-"
|
|
|
|
|
|
|
|
// These constants define the application version and follow the semantic
|
|
|
|
// versioning 2.0.0 spec (http://semver.org/).
|
|
|
|
const (
|
2020-09-10 12:05:36 +00:00
|
|
|
// Note: please update release_notes.md when you change these values.
|
2019-03-21 00:14:37 +00:00
|
|
|
appMajor uint = 0
|
2020-10-27 16:01:41 +00:00
|
|
|
appMinor uint = 11
|
2020-09-09 17:51:44 +00:00
|
|
|
appPatch uint = 0
|
2019-03-21 00:14:37 +00:00
|
|
|
|
|
|
|
// appPreRelease MUST only contain characters from semanticAlphabet per
|
|
|
|
// the semantic versioning spec.
|
2020-02-04 01:50:05 +00:00
|
|
|
appPreRelease = "beta"
|
2020-10-12 11:22:03 +00:00
|
|
|
|
|
|
|
// defaultAgentName is the default name of the software that is added as
|
|
|
|
// the first part of the user agent string.
|
|
|
|
defaultAgentName = "loopd"
|
2019-03-21 00:14:37 +00:00
|
|
|
)
|
|
|
|
|
2020-10-12 11:22:03 +00:00
|
|
|
// AgentName stores the name of the software that is added as the first part of
|
|
|
|
// the user agent string. This defaults to the value "loopd" when being run as
|
|
|
|
// a standalone component but can be overwritten by LiT for example when loopd
|
|
|
|
// is integrated into the UI.
|
|
|
|
var AgentName = defaultAgentName
|
|
|
|
|
2019-03-21 00:14:37 +00:00
|
|
|
// Version returns the application version as a properly formed string per the
|
2020-10-12 11:22:03 +00:00
|
|
|
// semantic versioning 2.0.0 spec (http://semver.org/) and the commit it was
|
|
|
|
// built on.
|
2019-03-21 00:14:37 +00:00
|
|
|
func Version() string {
|
2020-10-12 11:22:03 +00:00
|
|
|
// Append commit hash of current build to version.
|
|
|
|
return fmt.Sprintf("%s commit=%s", semanticVersion(), Commit)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserAgent returns the full user agent string that identifies the software
|
|
|
|
// that is submitting swaps to the loop server.
|
2020-11-06 09:43:03 +00:00
|
|
|
func UserAgent(initiator string) string {
|
|
|
|
// We'll only allow "safe" characters in the initiator portion of the
|
|
|
|
// user agent string and spaces only if surrounded by other characters.
|
|
|
|
initiatorAlphabet := semanticAlphabet + ". "
|
|
|
|
cleanInitiator := normalizeVerString(
|
|
|
|
strings.TrimSpace(initiator), initiatorAlphabet,
|
|
|
|
)
|
|
|
|
if len(cleanInitiator) > 0 {
|
|
|
|
cleanInitiator = fmt.Sprintf(",initiator=%s", cleanInitiator)
|
|
|
|
}
|
|
|
|
|
2020-10-12 11:22:03 +00:00
|
|
|
// Assemble full string, including the commit hash of current build.
|
|
|
|
return fmt.Sprintf(
|
2020-11-06 09:43:03 +00:00
|
|
|
"%s/v%s/commit=%s%s", AgentName, semanticVersion(), Commit,
|
|
|
|
cleanInitiator,
|
2020-10-12 11:22:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// semanticVersion returns the SemVer part of the version.
|
|
|
|
func semanticVersion() string {
|
2019-03-21 00:14:37 +00:00
|
|
|
// Start with the major, minor, and patch versions.
|
|
|
|
version := fmt.Sprintf("%d.%d.%d", appMajor, appMinor, appPatch)
|
|
|
|
|
2020-11-06 09:43:01 +00:00
|
|
|
// Append pre-release version if there is one. The hyphen called for
|
2019-03-21 00:14:37 +00:00
|
|
|
// by the semantic versioning spec is automatically appended and should
|
2020-11-06 09:43:01 +00:00
|
|
|
// not be contained in the pre-release string. The pre-release version
|
2019-03-21 00:14:37 +00:00
|
|
|
// is not appended if it contains invalid characters.
|
2020-11-06 09:43:01 +00:00
|
|
|
preRelease := normalizeVerString(appPreRelease, semanticAlphabet)
|
2019-03-21 00:14:37 +00:00
|
|
|
if preRelease != "" {
|
|
|
|
version = fmt.Sprintf("%s-%s", version, preRelease)
|
|
|
|
}
|
|
|
|
|
|
|
|
return version
|
|
|
|
}
|
|
|
|
|
|
|
|
// normalizeVerString returns the passed string stripped of all characters
|
2020-11-06 09:43:01 +00:00
|
|
|
// which are not valid according to the given alphabet.
|
|
|
|
func normalizeVerString(str, alphabet string) string {
|
2019-03-21 00:14:37 +00:00
|
|
|
var result bytes.Buffer
|
|
|
|
for _, r := range str {
|
2020-11-06 09:43:01 +00:00
|
|
|
if strings.ContainsRune(alphabet, r) {
|
2019-03-21 00:14:37 +00:00
|
|
|
result.WriteRune(r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.String()
|
|
|
|
}
|