Skip to content

Commit f2bc77f

Browse files
mtojekjsoriano
andauthored
Check if newer version is available (#439)
* Check if newer version is available * Update README * Update internal/version/check_update.go Co-authored-by: Jaime Soriano Pastor <[email protected]> Co-authored-by: Jaime Soriano Pastor <[email protected]>
1 parent 57299f2 commit f2bc77f

File tree

5 files changed

+100
-19
lines changed

5 files changed

+100
-19
lines changed

README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,9 @@ Currently, `elastic-package` only supports packages of type [Elastic Integration
1111

1212
## Getting started
1313

14-
Download and build the latest master of `elastic-package` binary:
15-
16-
```bash
17-
git clone https://github.com/elastic/elastic-package.git
18-
make build
19-
```
14+
Download latest release from the [Releases](https://github.com/elastic/elastic-package/releases/latest) page.
2015

21-
Alternatively, you may use `go get` but you will not be able to use the `elastic-package version` command.
16+
Alternatively, you may use `go get` but you will not be able to use the `elastic-package version` command or check updates.
2217

2318
```bash
2419
go get github.com/elastic/elastic-package
@@ -39,6 +34,15 @@ Run the `help` command and see available commands:
3934
elastic-package help
4035
```
4136

37+
## Development
38+
39+
Download and build the latest master of `elastic-package` binary:
40+
41+
```bash
42+
git clone https://github.com/elastic/elastic-package.git
43+
make build
44+
```
45+
4246
## Commands
4347

4448
`elastic-package` currently offers the commands listed below.

cmd/root.go

+15-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111

1212
"github.com/elastic/elastic-package/internal/cobraext"
1313
"github.com/elastic/elastic-package/internal/logger"
14+
"github.com/elastic/elastic-package/internal/version"
1415
)
1516

1617
var commands = []*cobraext.Command{
@@ -36,10 +37,15 @@ var commands = []*cobraext.Command{
3637
// RootCmd creates and returns root cmd for elastic-package
3738
func RootCmd() *cobra.Command {
3839
rootCmd := &cobra.Command{
39-
Use: "elastic-package",
40-
Short: "elastic-package - Command line tool for developing Elastic Integrations",
41-
SilenceUsage: true,
42-
PersistentPreRunE: processPersistentFlags,
40+
Use: "elastic-package",
41+
Short: "elastic-package - Command line tool for developing Elastic Integrations",
42+
SilenceUsage: true,
43+
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
44+
return cobraext.ComposeCommandActions(cmd, args,
45+
processPersistentFlags,
46+
checkVersionUpdate,
47+
)
48+
},
4349
}
4450
rootCmd.PersistentFlags().BoolP(cobraext.VerboseFlagName, "v", false, cobraext.VerboseFlagDescription)
4551

@@ -69,3 +75,8 @@ func processPersistentFlags(cmd *cobra.Command, args []string) error {
6975
}
7076
return nil
7177
}
78+
79+
func checkVersionUpdate(cmd *cobra.Command, args []string) error {
80+
version.CheckUpdate()
81+
return nil
82+
}

internal/github/client.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ package github
66

77
import (
88
"context"
9+
"net/http"
910

1011
"github.com/pkg/errors"
1112

1213
"github.com/google/go-github/v32/github"
1314
"golang.org/x/oauth2"
1415
)
1516

16-
// Client method creates new instance of the GitHub API client.
17+
// Client function creates new instance of the GitHub API client.
1718
func Client() (*github.Client, error) {
1819
authToken, err := AuthToken()
1920
if err != nil {
@@ -24,6 +25,11 @@ func Client() (*github.Client, error) {
2425
))), nil
2526
}
2627

28+
// UnauthorizedClient function returns unauthorized instance of Github API client.
29+
func UnauthorizedClient() *github.Client {
30+
return github.NewClient(new(http.Client))
31+
}
32+
2733
// User method returns the GitHub authenticated user.
2834
func User(client *github.Client) (string, error) {
2935
user, _, err := client.Users.Get(context.Background(), "")

internal/version/check_update.go

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
2+
// or more contributor license agreements. Licensed under the Elastic License;
3+
// you may not use this file except in compliance with the Elastic License.
4+
5+
package version
6+
7+
import (
8+
"context"
9+
10+
"github.com/Masterminds/semver"
11+
12+
"github.com/elastic/elastic-package/internal/github"
13+
"github.com/elastic/elastic-package/internal/logger"
14+
)
15+
16+
const (
17+
repositoryOwner = "elastic"
18+
repositoryName = "elastic-package"
19+
)
20+
21+
// CheckUpdate function checks using Github Release API if newer version is available.
22+
func CheckUpdate() {
23+
if Tag == "" {
24+
logger.Debugf("Distribution built without a version tag, can't determine release chronology. Please consider using official releases at " +
25+
"https://github.com/elastic/elastic-package/releases")
26+
return
27+
}
28+
29+
githubClient := github.UnauthorizedClient()
30+
release, _, err := githubClient.Repositories.GetLatestRelease(context.TODO(), repositoryOwner, repositoryName)
31+
if err != nil {
32+
logger.Debugf("Error: cant't check latest release, %v", err)
33+
return
34+
}
35+
36+
if release.TagName == nil || *release.TagName == "" {
37+
logger.Debugf("Error: release tag is empty")
38+
return
39+
}
40+
41+
currentVersion, err := semver.NewVersion(Tag[1:]) // strip "v" prefix
42+
if err != nil {
43+
logger.Debugf("Error: cant't parse current version tage, %v", err)
44+
return
45+
}
46+
47+
releaseVersion, err := semver.NewVersion((*release.TagName)[1:]) // strip "v" prefix
48+
if err != nil {
49+
logger.Debugf("Error: cant't parse current version tage, %v", err)
50+
return
51+
}
52+
53+
if currentVersion.LessThan(releaseVersion) {
54+
logger.Infof("New version is available - %s. Download from: %s", *release.TagName, *release.HTMLURL)
55+
}
56+
}

tools/readme/readme.md.tmpl

+11-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,9 @@ Currently, `elastic-package` only supports packages of type [Elastic Integration
1111

1212
## Getting started
1313

14-
Download and build the latest master of `elastic-package` binary:
15-
16-
```bash
17-
git clone https://github.com/elastic/elastic-package.git
18-
make build
19-
```
14+
Download latest release from the [Releases](https://github.com/elastic/elastic-package/releases/latest) page.
2015

21-
Alternatively, you may use `go get` but you will not be able to use the `elastic-package version` command.
16+
Alternatively, you may use `go get` but you will not be able to use the `elastic-package version` command or check updates.
2217

2318
```bash
2419
go get github.com/elastic/elastic-package
@@ -39,6 +34,15 @@ Run the `help` command and see available commands:
3934
elastic-package help
4035
```
4136

37+
## Development
38+
39+
Download and build the latest master of `elastic-package` binary:
40+
41+
```bash
42+
git clone https://github.com/elastic/elastic-package.git
43+
make build
44+
```
45+
4246
## Commands
4347

4448
`elastic-package` currently offers the commands listed below.

0 commit comments

Comments
 (0)