Fix some stderr.
This commit is contained in:
parent
439eeacbbe
commit
8e6f6679bd
@ -6,6 +6,7 @@ import (
|
|||||||
"encoding/pem"
|
"encoding/pem"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ReadPrivateKeyRSAfromPath(path string) (*rsa.PrivateKey, error) {
|
func ReadPrivateKeyRSAfromPath(path string) (*rsa.PrivateKey, error) {
|
||||||
@ -26,7 +27,7 @@ func ReadPublicKeyRSAfromString(pemString string) (*rsa.PublicKey, error) {
|
|||||||
decoded, _ := pem.Decode(pemByte)
|
decoded, _ := pem.Decode(pemByte)
|
||||||
keyInterface, err := x509.ParsePKIXPublicKey(decoded.Bytes)
|
keyInterface, err := x509.ParsePKIXPublicKey(decoded.Bytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
pub := keyInterface.(*rsa.PublicKey)
|
pub := keyInterface.(*rsa.PublicKey)
|
||||||
|
@ -57,7 +57,7 @@ func main() {
|
|||||||
|
|
||||||
macServer, err = machinery.NewServer(macConfig)
|
macServer, err = machinery.NewServer(macConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
|
@ -60,18 +60,18 @@ func exportConfigs(c *cli.Context) {
|
|||||||
func importConfigs(c *cli.Context) {
|
func importConfigs(c *cli.Context) {
|
||||||
file, err := os.Open(c.String("json"))
|
file, err := os.Open(c.String("json"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
jsonData, err := ioutil.ReadAll(file)
|
jsonData, err := ioutil.ReadAll(file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var data relayconf.ExportConfig
|
var data relayconf.ExportConfig
|
||||||
err = json.Unmarshal(jsonData, &data)
|
err = json.Unmarshal(jsonData, &data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/RichardKnop/machinery/v1/tasks"
|
"github.com/RichardKnop/machinery/v1/tasks"
|
||||||
@ -29,7 +30,7 @@ func pushRegistorJob(inboxURL string, body []byte) {
|
|||||||
}
|
}
|
||||||
_, err := macServer.SendTask(job)
|
_, err := macServer.SendTask(job)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/RichardKnop/machinery/v1/tasks"
|
"github.com/RichardKnop/machinery/v1/tasks"
|
||||||
"github.com/yukimochi/Activity-Relay/ActivityPub"
|
"github.com/yukimochi/Activity-Relay/ActivityPub"
|
||||||
@ -92,7 +93,7 @@ func pushRelayJob(sourceInbox string, body []byte) {
|
|||||||
}
|
}
|
||||||
_, err := macServer.SendTask(job)
|
_, err := macServer.SendTask(job)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -117,7 +118,7 @@ func pushRegistorJob(inboxURL string, body []byte) {
|
|||||||
}
|
}
|
||||||
_, err := macServer.SendTask(job)
|
_, err := macServer.SendTask(job)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,7 +140,6 @@ func unFollowAcceptable(activity *activitypub.Activity, actor *activitypub.Actor
|
|||||||
|
|
||||||
func suitableFollow(activity *activitypub.Activity, actor *activitypub.Actor) bool {
|
func suitableFollow(activity *activitypub.Activity, actor *activitypub.Actor) bool {
|
||||||
domain, _ := url.Parse(activity.Actor)
|
domain, _ := url.Parse(activity.Actor)
|
||||||
fmt.Println(exportConfig.BlockedDomains, domain.Host)
|
|
||||||
if contains(exportConfig.BlockedDomains, domain.Host) {
|
if contains(exportConfig.BlockedDomains, domain.Host) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
2
main.go
2
main.go
@ -67,7 +67,7 @@ func main() {
|
|||||||
|
|
||||||
macServer, err = machinery.NewServer(macConfig)
|
macServer, err = machinery.NewServer(macConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
Actor.GenerateSelfKey(hostname, &hostkey.PublicKey)
|
Actor.GenerateSelfKey(hostname, &hostkey.PublicKey)
|
||||||
|
@ -102,6 +102,6 @@ func main() {
|
|||||||
|
|
||||||
err = worker.Launch()
|
err = worker.Launch()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err.Error())
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user