mirror of
https://github.com/thegeeklab/wp-ansible.git
synced 2024-11-09 17:10:41 +00:00
297 lines
6.1 KiB
Go
297 lines
6.1 KiB
Go
package plugin
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"golang.org/x/sys/execabs"
|
|
)
|
|
|
|
const (
|
|
AnsibleForksDefault = 5
|
|
|
|
ansibleFolder = "/etc/ansible"
|
|
ansibleConfig = "/etc/ansible/ansible.cfg"
|
|
|
|
pipBin = "/usr/bin/pip"
|
|
ansibleBin = "/usr/bin/ansible"
|
|
ansibleGalaxyBin = "/usr/bin/ansible-galaxy"
|
|
ansiblePlaybookBin = "/usr/bin/ansible-playbook"
|
|
|
|
strictFilePerm = 0o600
|
|
)
|
|
|
|
const ansibleContent = `
|
|
[defaults]
|
|
host_key_checking = False
|
|
`
|
|
|
|
var ErrAnsiblePlaybookNotFound = errors.New("playbook not found")
|
|
|
|
func (p *Plugin) ansibleConfig() error {
|
|
if err := os.MkdirAll(ansibleFolder, os.ModePerm); err != nil {
|
|
return fmt.Errorf("failed to create ansible directory: %w", err)
|
|
}
|
|
|
|
if err := os.WriteFile(ansibleConfig, []byte(ansibleContent), strictFilePerm); err != nil {
|
|
return fmt.Errorf("failed to create ansible config: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) privateKey() error {
|
|
tmpfile, err := os.CreateTemp("", "privateKey")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create private key file: %w", err)
|
|
}
|
|
|
|
if _, err := tmpfile.Write([]byte(p.Settings.PrivateKey)); err != nil {
|
|
return fmt.Errorf("failed to write private key file: %w", err)
|
|
}
|
|
|
|
if err := tmpfile.Close(); err != nil {
|
|
return fmt.Errorf("failed to close private key file: %w", err)
|
|
}
|
|
|
|
p.Settings.PrivateKeyFile = tmpfile.Name()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) vaultPass() error {
|
|
tmpfile, err := os.CreateTemp("", "vaultPass")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create vault password file: %w", err)
|
|
}
|
|
|
|
if _, err := tmpfile.Write([]byte(p.Settings.VaultPassword)); err != nil {
|
|
return fmt.Errorf("failed to write vault password file: %w", err)
|
|
}
|
|
|
|
if err := tmpfile.Close(); err != nil {
|
|
return fmt.Errorf("failed to close vault password file: %w", err)
|
|
}
|
|
|
|
p.Settings.VaultPasswordFile = tmpfile.Name()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) playbooks() error {
|
|
var playbooks []string
|
|
|
|
for _, p := range p.Settings.Playbooks.Value() {
|
|
files, err := filepath.Glob(p)
|
|
if err != nil {
|
|
playbooks = append(playbooks, p)
|
|
|
|
continue
|
|
}
|
|
|
|
playbooks = append(playbooks, files...)
|
|
}
|
|
|
|
if len(playbooks) == 0 {
|
|
return ErrAnsiblePlaybookNotFound
|
|
}
|
|
|
|
p.Settings.Playbooks = *cli.NewStringSlice(playbooks...)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) versionCommand() *execabs.Cmd {
|
|
args := []string{
|
|
"--version",
|
|
}
|
|
|
|
return execabs.Command(
|
|
ansibleBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
func (p *Plugin) pythonRequirementsCommand() *execabs.Cmd {
|
|
args := []string{
|
|
"install",
|
|
"--upgrade",
|
|
"--requirement",
|
|
p.Settings.PythonRequirements,
|
|
}
|
|
|
|
return execabs.Command(
|
|
pipBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
func (p *Plugin) galaxyRequirementsCommand() *execabs.Cmd {
|
|
args := []string{
|
|
"install",
|
|
"--force",
|
|
"--role-file",
|
|
p.Settings.GalaxyRequirements,
|
|
}
|
|
|
|
if p.Settings.Verbose > 0 {
|
|
args = append(args, fmt.Sprintf("-%s", strings.Repeat("v", p.Settings.Verbose)))
|
|
}
|
|
|
|
return execabs.Command(
|
|
ansibleGalaxyBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
func (p *Plugin) ansibleCommand(inventory string) *execabs.Cmd {
|
|
args := []string{
|
|
"--inventory",
|
|
inventory,
|
|
}
|
|
|
|
if len(p.Settings.ModulePath.Value()) > 0 {
|
|
args = append(args, "--module-path", strings.Join(p.Settings.ModulePath.Value(), ":"))
|
|
}
|
|
|
|
if p.Settings.VaultID != "" {
|
|
args = append(args, "--vault-id", p.Settings.VaultID)
|
|
}
|
|
|
|
if p.Settings.VaultPasswordFile != "" {
|
|
args = append(args, "--vault-password-file", p.Settings.VaultPasswordFile)
|
|
}
|
|
|
|
for _, v := range p.Settings.ExtraVars.Value() {
|
|
args = append(args, "--extra-vars", v)
|
|
}
|
|
|
|
if p.Settings.ListHosts {
|
|
args = append(args, "--list-hosts")
|
|
args = append(args, p.Settings.Playbooks.Value()...)
|
|
|
|
return execabs.Command(
|
|
ansiblePlaybookBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
if p.Settings.SyntaxCheck {
|
|
args = append(args, "--syntax-check")
|
|
args = append(args, p.Settings.Playbooks.Value()...)
|
|
|
|
return execabs.Command(
|
|
ansiblePlaybookBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
if p.Settings.Check {
|
|
args = append(args, "--check")
|
|
}
|
|
|
|
if p.Settings.Diff {
|
|
args = append(args, "--diff")
|
|
}
|
|
|
|
if p.Settings.FlushCache {
|
|
args = append(args, "--flush-cache")
|
|
}
|
|
|
|
if p.Settings.ForceHandlers {
|
|
args = append(args, "--force-handlers")
|
|
}
|
|
|
|
if p.Settings.Forks != AnsibleForksDefault {
|
|
args = append(args, "--forks", strconv.Itoa(p.Settings.Forks))
|
|
}
|
|
|
|
if p.Settings.Limit != "" {
|
|
args = append(args, "--limit", p.Settings.Limit)
|
|
}
|
|
|
|
if p.Settings.ListTags {
|
|
args = append(args, "--list-tags")
|
|
}
|
|
|
|
if p.Settings.ListTasks {
|
|
args = append(args, "--list-tasks")
|
|
}
|
|
|
|
if p.Settings.SkipTags != "" {
|
|
args = append(args, "--skip-tags", p.Settings.SkipTags)
|
|
}
|
|
|
|
if p.Settings.StartAtTask != "" {
|
|
args = append(args, "--start-at-task", p.Settings.StartAtTask)
|
|
}
|
|
|
|
if p.Settings.Tags != "" {
|
|
args = append(args, "--tags", p.Settings.Tags)
|
|
}
|
|
|
|
if p.Settings.PrivateKeyFile != "" {
|
|
args = append(args, "--private-key", p.Settings.PrivateKeyFile)
|
|
}
|
|
|
|
if p.Settings.User != "" {
|
|
args = append(args, "--user", p.Settings.User)
|
|
}
|
|
|
|
if p.Settings.Connection != "" {
|
|
args = append(args, "--connection", p.Settings.Connection)
|
|
}
|
|
|
|
if p.Settings.Timeout != 0 {
|
|
args = append(args, "--timeout", strconv.Itoa(p.Settings.Timeout))
|
|
}
|
|
|
|
if p.Settings.SSHCommonArgs != "" {
|
|
args = append(args, "--ssh-common-args", p.Settings.SSHCommonArgs)
|
|
}
|
|
|
|
if p.Settings.SFTPExtraArgs != "" {
|
|
args = append(args, "--sftp-extra-args", p.Settings.SFTPExtraArgs)
|
|
}
|
|
|
|
if p.Settings.SCPExtraArgs != "" {
|
|
args = append(args, "--scp-extra-args", p.Settings.SCPExtraArgs)
|
|
}
|
|
|
|
if p.Settings.SSHExtraArgs != "" {
|
|
args = append(args, "--ssh-extra-args", p.Settings.SSHExtraArgs)
|
|
}
|
|
|
|
if p.Settings.Become {
|
|
args = append(args, "--become")
|
|
}
|
|
|
|
if p.Settings.BecomeMethod != "" {
|
|
args = append(args, "--become-method", p.Settings.BecomeMethod)
|
|
}
|
|
|
|
if p.Settings.BecomeUser != "" {
|
|
args = append(args, "--become-user", p.Settings.BecomeUser)
|
|
}
|
|
|
|
if p.Settings.Verbose > 0 {
|
|
args = append(args, fmt.Sprintf("-%s", strings.Repeat("v", p.Settings.Verbose)))
|
|
}
|
|
|
|
args = append(args, p.Settings.Playbooks.Value()...)
|
|
|
|
return execabs.Command(
|
|
ansiblePlaybookBin,
|
|
args...,
|
|
)
|
|
}
|
|
|
|
func trace(cmd *execabs.Cmd) {
|
|
fmt.Println("$", strings.Join(cmd.Args, " "))
|
|
}
|