diff --git a/.env b/.env index 508ae1c..2bb2057 100644 --- a/.env +++ b/.env @@ -23,9 +23,9 @@ AUTH_REFRESH_EXPIRATION=604800 # Google Translate Client # Path to your service account JSON key file downloaded from Google Cloud Console -GOOGLE_APPLICATION_CREDENTIALS=/home/daniel/coding/work/b2b/google-cred.json +GOOGLE_APPLICATION_CREDENTIALS=/home/marek/coding/work/b2b/google-cred.json # Your Google Cloud project ID (visible in the Google Cloud Console dashboard) -GOOGLE_CLOUD_PROJECT_ID=YOUR_PROJECT_ID +GOOGLE_CLOUD_PROJECT_ID=translation-343517 # Google OAuth2 OAUTH_GOOGLE_CLIENT_ID=331979954218-9vrpe08oqhhcgj6bvu6d4lds0dt630m9.apps.googleusercontent.com diff --git a/app/delivery/web/api/restricted/productDescription.go b/app/delivery/web/api/restricted/productDescription.go index d787573..40fec9a 100644 --- a/app/delivery/web/api/restricted/productDescription.go +++ b/app/delivery/web/api/restricted/productDescription.go @@ -134,12 +134,13 @@ func (h *ProductDescriptionHandler) SaveProductDescription(c fiber.Ctx) error { // GetProductDescription returns the product description for a given product ID func (h *ProductDescriptionHandler) TranslateProductDescription(c fiber.Ctx) error { - userID, ok := c.Locals("userID").(uint) - if !ok { - return c.Status(responseErrors.GetErrorStatus(responseErrors.ErrInvalidBody)).JSON(fiber.Map{ - "error": responseErrors.GetErrorCode(c, responseErrors.ErrInvalidBody), // possibly could return a different error - }) - } + // userID, ok := c.Locals("userID").(uint) + // if !ok { + // return c.Status(responseErrors.GetErrorStatus(responseErrors.ErrInvalidBody)).JSON(fiber.Map{ + // "error": responseErrors.GetErrorCode(c, responseErrors.ErrInvalidBody), // possibly could return a different error + // }) + // } + userID := uint(0) productID_attribute := c.Query("productID") productID, err := strconv.Atoi(productID_attribute) diff --git a/app/delivery/web/init.go b/app/delivery/web/init.go index 2fe263b..3377fd2 100644 --- a/app/delivery/web/init.go +++ b/app/delivery/web/init.go @@ -77,7 +77,7 @@ func (s *Server) Setup() error { s.api = s.app.Group("/api/v1") s.public = s.api.Group("/public") s.restricted = s.api.Group("/restricted") - s.restricted.Use(middleware.AuthMiddleware()) + // s.restricted.Use(middleware.AuthMiddleware()) // initialize language endpoints (general) api.NewLangHandler().InitLanguage(s.api, s.cfg) diff --git a/app/service/productDescriptionService/productDescriptionService.go b/app/service/productDescriptionService/productDescriptionService.go index dc76b67..bf0f66c 100644 --- a/app/service/productDescriptionService/productDescriptionService.go +++ b/app/service/productDescriptionService/productDescriptionService.go @@ -189,7 +189,8 @@ func (s *ProductDescriptionService) TranslateProductDescription(userID uint, pro "translation_of_product_usage", } - request := "Translate to " + lang.ISOCode + " without changing the html structure.\n" + // request := "Translate to " + lang.ISOCode + " without changing the html structure.\n" + request := "" for i := 0; i < len(keys); i++ { request += "\n<" + keys[i] + ">" request += *fields[i] @@ -204,7 +205,7 @@ func (s *ProductDescriptionService) TranslateProductDescription(userID uint, pro req := &translatepb.TranslateTextRequest{ Parent: fmt.Sprintf("projects/%s/locations/global", s.projectID), TargetLanguageCode: lang.ISOCode, - MimeType: "text/plain", + MimeType: "text/html", Contents: []string{request}, } responseGoogle, err := s.googleCli.TranslateText(s.ctx, req) @@ -215,18 +216,16 @@ func (s *ProductDescriptionService) TranslateProductDescription(userID uint, pro // TranslateText returns one Translation per input string. if len(responseGoogle.GetTranslations()) == 0 { - return nil, responseErrors.ErrOpenAIBadOutput + return nil, responseErrors.ErrAIBadOutput } response := responseGoogle.GetTranslations()[0].GetTranslatedText() for i := 0; i < len(keys); i++ { success, resolution := resolveResponse(*fields[i], response, keys[i]) if !success { - return nil, responseErrors.ErrOpenAIBadOutput + return nil, responseErrors.ErrAIBadOutput } *fields[i] = resolution - - fmt.Println("resolution: ", resolution) } return &ProductDescription, nil diff --git a/app/utils/responseErrors/response_errors.go b/app/utils/responseErrors/response_errors.go index 9708d83..797cdc3 100644 --- a/app/utils/responseErrors/response_errors.go +++ b/app/utils/responseErrors/response_errors.go @@ -38,11 +38,11 @@ var ( ErrVerificationTokenExpired = errors.New("verification token has expired") // Typed errors for product description handler - ErrBadAttribute = errors.New("bad attribute") - ErrBadField = errors.New("this field can not be updated") - ErrInvalidXHTML = errors.New("text is not in xhtml format") - ErrOpenAIResponseFail = errors.New("OpenAI responded with failure") - ErrOpenAIBadOutput = errors.New("OpenAI response does not obey the format") + ErrBadAttribute = errors.New("bad attribute") + ErrBadField = errors.New("this field can not be updated") + ErrInvalidXHTML = errors.New("text is not in xhtml format") + ErrAIResponseFail = errors.New("AI responded with failure") + ErrAIBadOutput = errors.New("AI response does not obey the format") ) // Error represents an error with HTTP status code @@ -118,9 +118,9 @@ func GetErrorCode(c fiber.Ctx, err error) string { return i18n.T_(c, "error.err_bad_field") case errors.Is(err, ErrInvalidXHTML): return i18n.T_(c, "error.err_invalid_html") - case errors.Is(err, ErrOpenAIResponseFail): + case errors.Is(err, ErrAIResponseFail): return i18n.T_(c, "error.err_openai_response_fail") - case errors.Is(err, ErrOpenAIBadOutput): + case errors.Is(err, ErrAIBadOutput): return i18n.T_(c, "error.err_openai_bad_output") default: @@ -158,8 +158,8 @@ func GetErrorStatus(err error) int { return fiber.StatusBadRequest case errors.Is(err, ErrEmailExists): return fiber.StatusConflict - case errors.Is(err, ErrOpenAIResponseFail), - errors.Is(err, ErrOpenAIBadOutput): + case errors.Is(err, ErrAIResponseFail), + errors.Is(err, ErrAIBadOutput): return fiber.StatusServiceUnavailable default: return fiber.StatusInternalServerError diff --git a/go.mod b/go.mod index 6d12358..99c5cc0 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,8 @@ module git.ma-al.com/goc_daniel/b2b go 1.26.0 require ( + cloud.google.com/go/auth v0.16.4 + cloud.google.com/go/translate v1.12.7 github.com/a-h/templ v0.3.1001 github.com/dlclark/regexp2 v1.11.5 github.com/go-git/go-git/v5 v5.17.0 @@ -11,25 +13,20 @@ require ( github.com/joho/godotenv v1.5.1 golang.org/x/crypto v0.48.0 golang.org/x/oauth2 v0.36.0 + google.golang.org/api v0.247.0 gorm.io/gorm v1.31.1 ) require ( cloud.google.com/go v0.121.6 // indirect - cloud.google.com/go/auth v0.16.4 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect cloud.google.com/go/longrunning v0.6.7 // indirect - cloud.google.com/go/translate v1.12.7 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/google/s2a-go v0.1.9 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect github.com/googleapis/gax-go/v2 v2.15.0 // indirect - github.com/tidwall/gjson v1.18.0 // indirect - github.com/tidwall/match v1.1.1 // indirect - github.com/tidwall/pretty v1.2.1 // indirect - github.com/tidwall/sjson v1.2.5 // indirect go.opentelemetry.io/auto/sdk v1.1.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect @@ -37,7 +34,6 @@ require ( go.opentelemetry.io/otel/metric v1.36.0 // indirect go.opentelemetry.io/otel/trace v1.36.0 // indirect golang.org/x/time v0.12.0 // indirect - google.golang.org/api v0.247.0 // indirect google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect @@ -64,10 +60,6 @@ require ( github.com/gofiber/utils/v2 v2.0.2 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/google/uuid v1.6.0 // indirect - github.com/jackc/pgpassfile v1.0.0 // indirect - github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect - github.com/jackc/pgx/v5 v5.8.0 // indirect - github.com/jackc/puddle/v2 v2.2.2 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect @@ -77,7 +69,6 @@ require ( github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/onsi/gomega v1.39.1 // indirect - github.com/openai/openai-go/v3 v3.26.0 github.com/philhofer/fwd v1.2.0 // indirect github.com/pjbgf/sha1cd v0.5.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect @@ -93,5 +84,5 @@ require ( golang.org/x/sys v0.42.0 // indirect golang.org/x/text v0.35.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect - gorm.io/driver/mysql v1.6.0 // indirect + gorm.io/driver/mysql v1.6.0 ) diff --git a/go.sum b/go.sum index daf5c63..cbdefba 100644 --- a/go.sum +++ b/go.sum @@ -72,6 +72,8 @@ github.com/golang-jwt/jwt/v5 v5.3.1 h1:kYf81DTWFe7t+1VvL7eS+jKFVWaUnK9cB1qbwn63Y github.com/golang-jwt/jwt/v5 v5.3.1/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 h1:f+oWsMOmNPc8JmEHVZIycC7hBoQxHH9pNKQORJNozsQ= github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8/go.mod h1:wcDNUvekVysuuOpQKo3191zZyTpiI6se1N1ULghS0sw= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/s2a-go v0.1.9 h1:LGD7gtMgezd8a/Xak7mEWL0PjoTQFvpRudN895yqKW0= @@ -82,14 +84,6 @@ github.com/googleapis/enterprise-certificate-proxy v0.3.6 h1:GW/XbdyBFQ8Qe+YAmFU github.com/googleapis/enterprise-certificate-proxy v0.3.6/go.mod h1:MkHOF77EYAE7qfSuSS9PU6g4Nt4e11cnsDUowfwewLA= github.com/googleapis/gax-go/v2 v2.15.0 h1:SyjDc1mGgZU5LncH8gimWo9lW1DtIfPibOG81vgd/bo= github.com/googleapis/gax-go/v2 v2.15.0/go.mod h1:zVVkkxAQHa1RQpg9z2AUCMnKhi0Qld9rcmyfL1OZhoc= -github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= -github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= -github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo= -github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= -github.com/jackc/pgx/v5 v5.8.0 h1:TYPDoleBBme0xGSAX3/+NujXXtpZn9HBONkQC7IEZSo= -github.com/jackc/pgx/v5 v5.8.0/go.mod h1:QVeDInX2m9VyzvNeiCJVjCkNFqzsNb43204HshNSZKw= -github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo= -github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= @@ -117,8 +111,6 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/onsi/gomega v1.39.1 h1:1IJLAad4zjPn2PsnhH70V4DKRFlrCzGBNrNaru+Vf28= github.com/onsi/gomega v1.39.1/go.mod h1:hL6yVALoTOxeWudERyfppUcZXjMwIMLnuSfruD2lcfg= -github.com/openai/openai-go/v3 v3.26.0 h1:bRt6H/ozMNt/dDkN4gobnLqaEGrRGBzmbVs0xxJEnQE= -github.com/openai/openai-go/v3 v3.26.0/go.mod h1:cdufnVK14cWcT9qA1rRtrXx4FTRsgbDPW7Ia7SS5cZo= github.com/philhofer/fwd v1.2.0 h1:e6DnBTl7vGY+Gz322/ASL4Gyp1FspeMvx1RNDoToZuM= github.com/philhofer/fwd v1.2.0/go.mod h1:RqIHx9QI14HlwKwm98g9Re5prTQ6LdeRQn+gXJFxsJM= github.com/pjbgf/sha1cd v0.5.0 h1:a+UkboSi1znleCDUNT3M5YxjOnN1fz2FhN48FlwCxs0= @@ -139,21 +131,9 @@ github.com/skeema/knownhosts v1.3.2 h1:EDL9mgf4NzwMXCTfaxSD/o/a5fxDw/xL9nkU28Jjd github.com/skeema/knownhosts v1.3.2/go.mod h1:bEg3iQAuw+jyiw+484wwFJoKSLwcfd7fqRy+N0QTiow= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= -github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= -github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY= -github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= -github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= -github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= -github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= -github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4= -github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= -github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY= -github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28= github.com/tinylib/msgp v1.6.3 h1:bCSxiTz386UTgyT1i0MSCvdbWjVW+8sG3PjkGsZQt4s= github.com/tinylib/msgp v1.6.3/go.mod h1:RSp0LW9oSxFut3KzESt5Voq4GVWyS+PSulT77roAqEA= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= @@ -176,6 +156,10 @@ go.opentelemetry.io/otel v1.36.0 h1:UumtzIklRBY6cI/lllNZlALOF5nNIzJVb16APdvgTXg= go.opentelemetry.io/otel v1.36.0/go.mod h1:/TcFMXYjyRNh8khOAO9ybYkqaDBb/70aVwkNML4pP8E= go.opentelemetry.io/otel/metric v1.36.0 h1:MoWPKVhQvJ+eeXWHFBOPoBOi20jh6Iq2CcCREuTYufE= go.opentelemetry.io/otel/metric v1.36.0/go.mod h1:zC7Ks+yeyJt4xig9DEw9kuUFe5C3zLbVjV2PzT6qzbs= +go.opentelemetry.io/otel/sdk v1.36.0 h1:b6SYIuLRs88ztox4EyrvRti80uXIFy+Sqzoh9kFULbs= +go.opentelemetry.io/otel/sdk v1.36.0/go.mod h1:+lC+mTgD+MUWfjJubi2vvXWcVxyr9rmlshZni72pXeY= +go.opentelemetry.io/otel/sdk/metric v1.36.0 h1:r0ntwwGosWGaa0CrSt8cuNuTcccMXERFwHX4dThiPis= +go.opentelemetry.io/otel/sdk/metric v1.36.0/go.mod h1:qTNOhFDfKRwX0yXOqJYegL5WRaW376QbB7P4Pb0qva4= go.opentelemetry.io/otel/trace v1.36.0 h1:ahxWNuqZjpdiFAyrIoQ4GIiAIhxAunQR6MUoKrsNd4w= go.opentelemetry.io/otel/trace v1.36.0/go.mod h1:gQ+OnDZzrybY4k4seLzPAWNwVBBVlF2szhehOBB/tGA= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= @@ -228,7 +212,6 @@ gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gorm.io/driver/mysql v1.6.0 h1:eNbLmNTpPpTOVZi8MMxCi2aaIm0ZpInbORNXDwyLGvg= diff --git a/google-cred.json b/google-cred.json index 6c50ff7..bf6b864 100644 --- a/google-cred.json +++ b/google-cred.json @@ -1,13 +1,13 @@ { - "type": "service_account", - "project_id": "YOUR_PROJECT_ID", - "private_key_id": "YOUR_PRIVATE_KEY_ID", - "private_key": "-----BEGIN RSA PRIVATE KEY-----\nYOUR_PRIVATE_KEY\n-----END RSA PRIVATE KEY-----\n", - "client_email": "YOUR_SERVICE_ACCOUNT_EMAIL@YOUR_PROJECT_ID.iam.gserviceaccount.com", - "client_id": "YOUR_CLIENT_ID", - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/YOUR_SERVICE_ACCOUNT_EMAIL%40YOUR_PROJECT_ID.iam.gserviceaccount.com", - "universe_domain": "googleapis.com" + "type": "service_account", + "project_id": "translation-343517", + "private_key_id": "5336e756f1dcb3b6e72dbb50363303eba949921f", + "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDCxQ3r0Tjsvp6Y\n/liMQaCrCcCvWhSkNpXvpevhKZ6I7C0sTmn/7qYUDUWy/l2ullVkn4tAfILykj3v\nj8pwDqSfnWzS5GIunXdC5J2WB+dxqs5a2lVUFjQrMdsnNSgc3Y/ZXSHhcBG24cuD\nkwpHk9MbPYir8IO6gvrE+MVb9glxSWefzI3d0hyN7r7E7DENI49Hsppsm0p1JQai\nQKIHW/8YLXxwUapX6yf8VVQEk3qeYGWe3JCUSTihqAK7T2aJJjoqPp0IR4U4pEgH\neIDWDPm0BDZCk20R1A3wi+2T/a5TTLOKbwSMrWPeNVEtdzA6Y1ERDp0yAoZzHiWR\nP8qKRzYBAgMBAAECggEAAZ2bkHSTWarUj9NWBNj5F0tE6rQIYM0z+VhNE/iUDgQA\nGe3ql1P6rpALDQq0IYaNS4Djly8jg8ycVQ8wFMgG4tqk9GIKL1E8XRl59ggAnGv8\nzYO0SDbI8CTKX6z1kLlypIfhdbYRELHNzgWtu6ayoImT7AQRGWMMnnxiqZWyr6PN\n36V5OPCD/kaBmP40uEUxjWG7osxvH1e8KmAuUDvZrmL9Hjs0+hyXimowcwZHdGL/\nPocSy1ME2S64osDuZKApnuKv2gUwVu6vADIf4wxCdxIZvsRuDw1BG/u1JTXW3fbk\nxxaa6p4/L2Ru1p5rXJ+r/8xx4Ao0ABI6g9tS+IVnWwKBgQD43Ynl+YMPkE9c6zJz\nUvKiJv2AmmxqgSXpWNtlEQRjoaUAyn32BtjOD0sIaUaj4th5WIIoLrPA3fDNBFXI\nxtrPTkItMExiWpb0GaY/1/1dzFUnx/qK1mWurnUMLQVQifg4MsHptK0wm+UyPlB/\nJtj0BRrf7tDvWvh80tfaHqW+nwKBgQDIWn/d85Fx/ual/xYSQ7vkE/W01ROQ+ykn\nqVzXUn5lO1sBad60vQr7CXRyHptJYp8R3iKfgZ96KJ+D3KYhjMEX0v6/OhOnvOj/\n1GauoVwXDquLVDQxjag3dNSoqgNUKH8m9Z3VAxylyi20N8iOEzjOg2Jz8bmpINoS\nuQhlAbznXwKBgQC61/mUhER2Bu7O4Ha8RuaL/6IMT+ReAiColWIC+0fEVbRAZ8cy\nU+mqq6i14/R5TvMgB+eQq5+higAkrMCLQWE+i477xmtS3JjBJBDBljRPm/3DJE1i\nt50YDTsrrRF0amHGL7WO9WuiNylZE5f0HwJ8Eukef3q2eiJd9R7CUIg4GQKBgHr4\n2RzA39fJLYZbUA+71TpDaf8o/U5yais2z441yvCVguEWOyRSF8hHYFqfII7lYl8U\nKcofRGQ1RNspdiqHewkFb2it29yLnbNQignLbnuUfIQTFcoIeWQ4aEJxv4NLK+gc\nv1g8BbxYoL7JsmZJtAdFKwuhJWSCjncJbPaaH3kfAoGBAOCeAmhWKOaVRD2pmz7F\n9Zrm1Xmh/TNn/sItmteueq7n0XQfXXMVd/j9vQhcEp7SIR6fjvMtFlZoqXMnKaN6\n8qexDkgV52YMZdSrQONvS2m+IxSi1CiBkezXexfk0izHd7lv0/LC3yDSBfzOLF4A\noWpkF5Vs3c/A1WxXsxmxLIyP\n-----END PRIVATE KEY-----\n", + "client_email": "b2b-nalu-translations@translation-343517.iam.gserviceaccount.com", + "client_id": "103867914305456564740", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/b2b-nalu-translations%40translation-343517.iam.gserviceaccount.com", + "universe_domain": "googleapis.com" } diff --git a/tmp/build-errors.log b/tmp/build-errors.log index dc16f91..8410918 100644 --- a/tmp/build-errors.log +++ b/tmp/build-errors.log @@ -1 +1 @@ -exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1 \ No newline at end of file +exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1exit status 1 \ No newline at end of file diff --git a/tmp/main b/tmp/main index 8aee715..52188b4 100755 Binary files a/tmp/main and b/tmp/main differ