github.com/rigado/snapd@v2.42.5-go-mod+incompatible/cmd/snap/cmd_connectivity_check.go (about)

     1  // -*- Mode: Go; indent-tabs-mode: t -*-
     2  
     3  /*
     4   * Copyright (C) 2018 Canonical Ltd
     5   *
     6   * This program is free software: you can redistribute it and/or modify
     7   * it under the terms of the GNU General Public License version 3 as
     8   * published by the Free Software Foundation.
     9   *
    10   * This program is distributed in the hope that it will be useful,
    11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    13   * GNU General Public License for more details.
    14   *
    15   * You should have received a copy of the GNU General Public License
    16   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    17   *
    18   */
    19  
    20  package main
    21  
    22  import (
    23  	"fmt"
    24  
    25  	"github.com/jessevdk/go-flags"
    26  )
    27  
    28  type cmdConnectivityCheck struct {
    29  	clientMixin
    30  }
    31  
    32  func init() {
    33  	addDebugCommand("connectivity",
    34  		"Check network connectivity status",
    35  		"The connectivity command checks the network connectivity of snapd.",
    36  		func() flags.Commander {
    37  			return &cmdConnectivityCheck{}
    38  		}, nil, nil)
    39  }
    40  
    41  func (x *cmdConnectivityCheck) Execute(args []string) error {
    42  	if len(args) > 0 {
    43  		return ErrExtraArgs
    44  	}
    45  
    46  	var status struct {
    47  		Unreachable []string
    48  	}
    49  	if err := x.client.DebugGet("connectivity", &status, nil); err != nil {
    50  		return err
    51  	}
    52  
    53  	fmt.Fprintf(Stdout, "Connectivity status:\n")
    54  	if len(status.Unreachable) == 0 {
    55  		fmt.Fprintf(Stdout, " * PASS\n")
    56  		return nil
    57  	}
    58  
    59  	for _, uri := range status.Unreachable {
    60  		fmt.Fprintf(Stdout, " * %s: unreachable\n", uri)
    61  	}
    62  	return fmt.Errorf("%v servers unreachable", len(status.Unreachable))
    63  }