Skip to content

Commit

Permalink
cmd: add completion command
Browse files Browse the repository at this point in the history
  • Loading branch information
camandel committed Oct 1, 2019
1 parent dde2043 commit 761a777
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 0 deletions.
44 changes: 44 additions & 0 deletions cmd/agola/cmd/completion.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2019 Sorint.lab
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
// See the License for the specific language governing permissions and
// limitations under the License.

package cmd

import (
"os"

"github.com/spf13/cobra"
)

var cmdCompletion = &cobra.Command{
Use: "completion",
Short: "completion",
}

func init() {
cmdAgola.AddCommand(cmdCompletion)
}

func completionShell(cmd *cobra.Command, args []string, shell string) error {
switch shell {
case "bash":
if err := cmdAgola.GenBashCompletion(os.Stdout); err != nil {
return err
}
case "zsh":
if err := cmdAgola.GenZshCompletion(os.Stdout); err != nil {
return err
}
}
return nil
}
49 changes: 49 additions & 0 deletions cmd/agola/cmd/completionbash.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// Copyright 2019 Sorint.lab
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
// See the License for the specific language governing permissions and
// limitations under the License.

package cmd

import (
"github.com/spf13/cobra"
)

var cmdCompletionBash = &cobra.Command{
Use: "bash",
Run: func(cmd *cobra.Command, args []string) {
if err := completionShell(cmd, args, "bash"); err != nil {
log.Fatalf("err: %v", err)
}
},
Short: "generates bash completion scripts",
Long: `generates bash completion scripts
To load bash completion in the current session run:
source <(agola completion bash)
To configure your bash shell to load completions for each session add the scripts to your ~/.bashrc file:
echo 'source <(agola completion bash)' >> ~/.bashrc
or add the scripts to the /etc/bash_completion.d directory:
agola completion bash > /etc/bash_completion.d/agola
NOTE: the agola command must be in the user command search paths (PATH environment variable) or it is necessary to specify the absolute path of the agola binary (e.g. /your/path/agola).
`,
}

func init() {
cmdCompletion.AddCommand(cmdCompletionBash)
}
45 changes: 45 additions & 0 deletions cmd/agola/cmd/completionzsh.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Copyright 2019 Sorint.lab
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
// See the License for the specific language governing permissions and
// limitations under the License.

package cmd

import (
"github.com/spf13/cobra"
)

var cmdCompletionZsh = &cobra.Command{
Use: "zsh",
Run: func(cmd *cobra.Command, args []string) {
if err := completionShell(cmd, args, "zsh"); err != nil {
log.Fatalf("err: %v", err)
}
},
Short: "generates zsh completion scripts",
Long: `generates zsh completion scripts
To load zsh completion in the current session run:
source <(agola completion zsh)
To configure your zsh shell to load completions for each session add the scripts to your ~/.zshrc file:
echo 'source <(agola completion zsh)' >> ~/.zshrc
NOTE: the agola command must be in the user command search paths (PATH environment variable) or it is necessary to specify the absolute path of the agola binary (e.g. /your/path/agola).
`,
}

func init() {
cmdCompletion.AddCommand(cmdCompletionZsh)
}

0 comments on commit 761a777

Please sign in to comment.