improve command xmpp-check
This commit is contained in:
parent
e05f36c69f
commit
323de704f6
|
@ -12,18 +12,37 @@ $ go get -u gosrc.io/xmpp/cmd/xmpp-check
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
```
|
||||||
|
$ xmpp-check --help
|
||||||
|
Usage:
|
||||||
|
xmpp-check <host[:port]> [flags]
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
xmpp-check chat.sum7.eu:5222 --domain meckerspace.de
|
||||||
|
|
||||||
|
Flags:
|
||||||
|
-d, --domain string domain if host handle multiple domains
|
||||||
|
-h, --help help for xmpp-check
|
||||||
|
```
|
||||||
|
|
||||||
If you server is on standard port and XMPP domains matches the hostname you can simply use:
|
If you server is on standard port and XMPP domains matches the hostname you can simply use:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ xmpp-check myhost.net
|
$ xmpp-check chat.sum7.eu
|
||||||
2019/05/16 16:04:36 All checks passed
|
info All checks passed
|
||||||
|
⇢ address="chat.sum7.eu" domain=""
|
||||||
|
⇢ main.go:43 main.runCheck
|
||||||
|
⇢ 2019-07-16T22:01:39.765+02:00
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also pass the port and the XMPP domain if different from the server hostname:
|
You can also pass the port and the XMPP domain if different from the server hostname:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ xmpp-check myhost.net:5222 xmppdomain.net
|
$ xmpp-check chat.sum7.eu:5222 --domain meckerspace.de
|
||||||
2019/05/16 16:05:21 All checks passed
|
info All checks passed
|
||||||
|
⇢ address="chat.sum7.eu:5222" domain="meckerspace.de"
|
||||||
|
⇢ main.go:43 main.runCheck
|
||||||
|
⇢ 2019-07-16T22:01:33.270+02:00
|
||||||
```
|
```
|
||||||
|
|
||||||
Error code will be non-zero in case of error. You can thus use it directly with your usual
|
Error code will be non-zero in case of error. You can thus use it directly with your usual
|
||||||
|
|
34
cmd/xmpp-check/log.go
Normal file
34
cmd/xmpp-check/log.go
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/bdlm/log"
|
||||||
|
stdLogger "github.com/bdlm/std/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
type hook struct{}
|
||||||
|
|
||||||
|
func (h *hook) Fire(entry *log.Entry) error {
|
||||||
|
switch entry.Level {
|
||||||
|
case log.PanicLevel:
|
||||||
|
entry.Logger.Out = os.Stderr
|
||||||
|
case log.FatalLevel:
|
||||||
|
entry.Logger.Out = os.Stderr
|
||||||
|
case log.ErrorLevel:
|
||||||
|
entry.Logger.Out = os.Stderr
|
||||||
|
case log.WarnLevel:
|
||||||
|
entry.Logger.Out = os.Stdout
|
||||||
|
case log.InfoLevel:
|
||||||
|
entry.Logger.Out = os.Stdout
|
||||||
|
case log.DebugLevel:
|
||||||
|
entry.Logger.Out = os.Stdout
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *hook) Levels() []stdLogger.Level {
|
||||||
|
return log.AllLevels
|
||||||
|
}
|
44
cmd/xmpp-check/main.go
Normal file
44
cmd/xmpp-check/main.go
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/bdlm/log"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
"gosrc.io/xmpp"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
log.AddHook(&hook{})
|
||||||
|
cmd.Execute()
|
||||||
|
}
|
||||||
|
|
||||||
|
var domain = ""
|
||||||
|
var cmd = &cobra.Command{
|
||||||
|
Use: "xmpp-check <host[:port]>",
|
||||||
|
Example: "xmpp-check chat.sum7.eu:5222 --domain meckerspace.de",
|
||||||
|
Args: cobra.ExactArgs(1),
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
runCheck(args[0], domain)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
cmd.Flags().StringVarP(&domain, "domain", "d", "", "domain if host handle multiple domains")
|
||||||
|
}
|
||||||
|
|
||||||
|
func runCheck(address, domain string) {
|
||||||
|
logger := log.WithFields(map[string]interface{}{
|
||||||
|
"address": address,
|
||||||
|
"domain": domain,
|
||||||
|
})
|
||||||
|
client, err := xmpp.NewChecker(address, domain)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal("Error: ", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = client.Check(); err != nil {
|
||||||
|
logger.Fatal("Failed connection check: ", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Println("All checks passed")
|
||||||
|
}
|
|
@ -1,42 +0,0 @@
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"log"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"gosrc.io/xmpp"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
args := os.Args[1:]
|
|
||||||
|
|
||||||
if len(args) == 0 {
|
|
||||||
log.Fatal("usage: xmpp-check host[:port] [domain]")
|
|
||||||
}
|
|
||||||
|
|
||||||
var address string
|
|
||||||
var domain string
|
|
||||||
if len(args) >= 1 {
|
|
||||||
address = args[0]
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(args) >= 2 {
|
|
||||||
domain = args[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
runCheck(address, domain)
|
|
||||||
}
|
|
||||||
|
|
||||||
func runCheck(address, domain string) {
|
|
||||||
client, err := xmpp.NewChecker(address, domain)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal("Error: ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = client.Check(); err != nil {
|
|
||||||
log.Fatal("Failed connection check: ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Println("All checks passed")
|
|
||||||
}
|
|
Loading…
Reference in a new issue