2020-10-14 09:36:00 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package gitea
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-version"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ServerVersion returns the version of the server
|
|
|
|
func (c *Client) ServerVersion() (string, *Response, error) {
|
|
|
|
var v = struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
}{}
|
|
|
|
resp, err := c.getParsedResponse("GET", "/version", nil, nil, &v)
|
|
|
|
return v.Version, resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckServerVersionConstraint validates that the login's server satisfies a
|
|
|
|
// given version constraint such as ">= 1.11.0+dev"
|
|
|
|
func (c *Client) CheckServerVersionConstraint(constraint string) error {
|
2021-03-22 22:33:18 +05:30
|
|
|
if err := c.loadServerVersion(); err != nil {
|
|
|
|
return err
|
2020-10-14 09:36:00 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
check, err := version.NewConstraint(constraint)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !check.Check(c.serverVersion) {
|
2021-03-22 22:33:18 +05:30
|
|
|
c.mutex.RLock()
|
|
|
|
url := c.url
|
|
|
|
c.mutex.RUnlock()
|
|
|
|
return fmt.Errorf("gitea server at %s does not satisfy version constraint %s", url, constraint)
|
2020-10-14 09:36:00 +05:30
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-28 22:26:38 +05:30
|
|
|
// predefined versions only have to be parsed by library once
|
|
|
|
var (
|
|
|
|
version1_11_0, _ = version.NewVersion("1.11.0")
|
|
|
|
version1_12_0, _ = version.NewVersion("1.12.0")
|
|
|
|
version1_13_0, _ = version.NewVersion("1.13.0")
|
2021-03-22 22:33:18 +05:30
|
|
|
version1_14_0, _ = version.NewVersion("1.14.0")
|
2021-01-28 22:26:38 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// checkServerVersionGreaterThanOrEqual is internally used to speed up things and ignore issues with prerelease
|
|
|
|
func (c *Client) checkServerVersionGreaterThanOrEqual(v *version.Version) error {
|
2021-03-22 22:33:18 +05:30
|
|
|
if err := c.loadServerVersion(); err != nil {
|
|
|
|
return err
|
2021-01-28 22:26:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if !c.serverVersion.GreaterThanOrEqual(v) {
|
2021-03-22 22:33:18 +05:30
|
|
|
c.mutex.RLock()
|
|
|
|
url := c.url
|
|
|
|
c.mutex.RUnlock()
|
|
|
|
return fmt.Errorf("gitea server at %s is older than %s", url, v.Original())
|
2021-01-28 22:26:38 +05:30
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-22 22:33:18 +05:30
|
|
|
// loadServerVersion init the serverVersion variable
|
|
|
|
func (c *Client) loadServerVersion() (err error) {
|
|
|
|
c.getVersionOnce.Do(func() {
|
|
|
|
raw, _, err2 := c.ServerVersion()
|
|
|
|
if err2 != nil {
|
|
|
|
err = err2
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if c.serverVersion, err = version.NewVersion(raw); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return
|
2020-10-14 09:36:00 +05:30
|
|
|
}
|