allow `\n` in private-key envs

This commit is contained in:
Mike Schwörer 2023-06-18 01:29:13 +02:00
parent 43d0107fb5
commit c05deb3a41
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 8 additions and 2 deletions

View File

@ -9,6 +9,7 @@ import (
"github.com/rs/zerolog/log"
"io"
"net/http"
"strings"
"time"
)
@ -23,7 +24,9 @@ type AndroidPublisher struct {
func NewAndroidPublisherAPI(conf scn.Config) (AndroidPublisherClient, error) {
googauth, err := NewAuth(conf.GoogleAPITokenURI, conf.GoogleAPIPrivKeyID, conf.GoogleAPIClientMail, conf.GoogleAPIPrivateKey)
pkey := strings.ReplaceAll(conf.GoogleAPIPrivateKey, "\\n", "\n")
googauth, err := NewAuth(conf.GoogleAPITokenURI, conf.GoogleAPIPrivKeyID, conf.GoogleAPIClientMail, pkey)
if err != nil {
return nil, err
}

View File

@ -15,6 +15,7 @@ import (
"io"
"net/http"
"strconv"
"strings"
"time"
)
@ -29,7 +30,9 @@ type FirebaseConnector struct {
func NewFirebaseConn(conf scn.Config) (NotificationClient, error) {
fbauth, err := NewAuth(conf.FirebaseTokenURI, conf.FirebaseProjectID, conf.FirebaseClientMail, conf.FirebasePrivateKey)
pkey := strings.ReplaceAll(conf.FirebasePrivateKey, "\\n", "\n")
fbauth, err := NewAuth(conf.FirebaseTokenURI, conf.FirebaseProjectID, conf.FirebaseClientMail, pkey)
if err != nil {
return nil, err
}