add ability to check federation status of homeservers

This commit is contained in:
Aaron Bieber 2020-02-18 20:20:01 -07:00
parent 3dd1ce9903
commit 3e44a44f50
3 changed files with 112 additions and 0 deletions

View File

@ -7,6 +7,7 @@
|Beat|`(?i)^\.beat$|^what time is it\?$|^beat( )?time:?\??$`|Print the current [beat time](https://en.wikipedia.org/wiki/Swatch_Internet_Time).| |Beat|`(?i)^\.beat$|^what time is it\?$|^beat( )?time:?\??$`|Print the current [beat time](https://en.wikipedia.org/wiki/Swatch_Internet_Time).|
|Beer|`(?i)^beer: `|Queries [OpenDataSoft](https://public-us.opendatasoft.com/explore/dataset/open-beer-database/table/)'s beer database for a given beer.| |Beer|`(?i)^beer: `|Queries [OpenDataSoft](https://public-us.opendatasoft.com/explore/dataset/open-beer-database/table/)'s beer database for a given beer.|
|BotSnack|`(?i)botsnack`|Consumes a botsnack. This pleases mcchunkie and brings balance to the universe.| |BotSnack|`(?i)botsnack`|Consumes a botsnack. This pleases mcchunkie and brings balance to the universe.|
|Feder|`(?i)^feder: (.*)$`|check the Matrix federation status of a given URL.|
|HighFive|`o/|\o`|Everyone loves highfives.| |HighFive|`o/|\o`|Everyone loves highfives.|
|Hi|`(?i)^hi|hi$`|Friendly bots say hi.| |Hi|`(?i)^hi|hi$`|Friendly bots say hi.|
|LoveYou|`(?i)i love you`|Spreading love where ever we can by responding when someone shows us love.| |LoveYou|`(?i)i love you`|Spreading love where ever we can by responding when someone shows us love.|

110
plugins/federation.go Normal file
View File

@ -0,0 +1,110 @@
package plugins
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"regexp"
"github.com/matrix-org/gomatrix"
)
// ServiceInfo represents the version info from a response
type ServiceInfo struct {
Name string `json:"name"`
Version string `json:"version"`
}
// FedResp represents a federation statuse response
type FedResp struct {
Status bool `json:"FederationOK"`
Info ServiceInfo `json:"Version"`
}
// Feder responds to federation check requests
type Feder struct {
}
// Descr describes this plugin
func (h *Feder) Descr() string {
return "check the Matrix federation status of a given URL."
}
// Re returns the federation check matching string
func (h *Feder) Re() string {
return `(?i)^feder: (.*)$`
}
func (h *Feder) fix(msg string) string {
re := regexp.MustCompile(h.Re())
return re.ReplaceAllString(msg, "$1")
}
// Match determines if we should call the response for Feder
func (h *Feder) Match(user, msg string) bool {
re := regexp.MustCompile(h.Re())
return re.MatchString(msg)
}
func (h *Feder) get(hserver string) (*FedResp, error) {
u := "https://federationtester.matrix.org/api/report?server_name="
u = fmt.Sprintf("%s%s", u, url.PathEscape(hserver))
resp, err := http.Get(u)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
var fresp = &FedResp{}
err = json.Unmarshal([]byte(body), fresp)
if err != nil {
return nil, err
}
return fresp, nil
}
// SetStore we don't need a store here.
func (h *Feder) SetStore(s PluginStore) {}
// RespondText to looking up of federation check requests
func (h *Feder) RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, post string) {
homeServer := h.fix(post)
if homeServer != "" {
u, err := url.Parse(fmt.Sprintf("https://%s", homeServer))
if err != nil {
SendText(c, ev.RoomID, "that's not a real host name.")
return
}
homeServer = u.Hostname()
log.Printf("%s: responding to '%s'", h.Name(), ev.Sender)
fed, err := h.get(homeServer)
if err != nil {
SendText(c, ev.RoomID, fmt.Sprintf("sorry %s, I can't look up the federation status (%s)", ev.Sender, err))
}
stat := "broken"
if fed.Status {
stat = "OK"
}
SendText(c, ev.RoomID, fmt.Sprintf("%s is running %s (%s) and is %s.",
homeServer, fed.Info.Name, fed.Info.Version, stat))
}
}
// Name Feder!
func (h *Feder) Name() string {
return "Feder"
}

View File

@ -73,6 +73,7 @@ var Plugs = Plugins{
&Beat{}, &Beat{},
&Beer{}, &Beer{},
&BotSnack{}, &BotSnack{},
&Feder{},
&HighFive{}, &HighFive{},
&Hi{}, &Hi{},
&LoveYou{}, &LoveYou{},