ocket8888 commented on a change in pull request #3534: TP Delivery Service 
Generate SSL update, new letsencrypt generate and renew API endpoints
URL: https://github.com/apache/trafficcontrol/pull/3534#discussion_r380253255
 
 

 ##########
 File path: traffic_ops/traffic_ops_golang/deliveryservice/autorenewcerts.go
 ##########
 @@ -0,0 +1,214 @@
+package deliveryservice
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import (
+       "context"
+       "database/sql"
+       "errors"
+       "net/http"
+       "strconv"
+       "time"
+
+       "github.com/apache/trafficcontrol/lib/go-log"
+       "github.com/apache/trafficcontrol/lib/go-tc"
+       "github.com/apache/trafficcontrol/lib/go-util"
+       "github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/api"
+       "github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/auth"
+       "github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/config"
+       
"github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/riaksvc"
+)
+
+type DsKey struct {
+       XmlId   string
+       Version sql.NullInt64
+}
+
+type DsExpirationInfo struct {
+       XmlId      string
+       Version    util.JSONIntStr
+       Expiration time.Time
+       AuthType   string
+       Error      error
+}
+
+type ExpirationSummary struct {
+       LetsEncryptExpirations []DsExpirationInfo
+       SelfSignedExpirations  []DsExpirationInfo
+       OtherExpirations       []DsExpirationInfo
+}
+
+const emailTemplateFile = 
"/opt/traffic_ops/app/templates/send_mail/autorenewcerts_mail.html"
+
+func RenewCertificates(w http.ResponseWriter, r *http.Request) {
+       inf, userErr, sysErr, errCode := api.NewInfo(r, nil, nil)
+       if userErr != nil || sysErr != nil {
+               api.HandleErr(w, r, inf.Tx.Tx, errCode, userErr, sysErr)
+               return
+       }
+       defer inf.Close()
+
+       if inf.Config.RiakEnabled == false {
+               api.HandleErr(w, r, inf.Tx.Tx, http.StatusInternalServerError, 
errors.New("the Riak service is unavailable"), errors.New("getting SSL keys 
from Riak by xml id: Riak is not configured"))
+               return
+       }
+
+       rows, err := inf.Tx.Tx.Query(`SELECT xml_id, ssl_key_version FROM 
deliveryservice WHERE ssl_key_version != 0`)
+       if err != nil {
+               api.HandleErr(w, r, inf.Tx.Tx, http.StatusInternalServerError, 
nil, err)
+               return
+       }
+       defer rows.Close()
+
+       existingCerts := []ExistingCerts{}
+       for rows.Next() {
+               ds := DsKey{}
+               err := rows.Scan(&ds.XmlId, &ds.Version)
+               if err != nil {
+                       api.HandleErr(w, r, inf.Tx.Tx, 
http.StatusInternalServerError, nil, err)
+               }
+               existingCerts = append(existingCerts, ExistingCerts{Version: 
ds.Version, XmlId: ds.XmlId})
+       }
+
+       ctx, _ := context.WithTimeout(r.Context(), 
LetsEncryptTimeout*time.Duration(len(existingCerts)))
+
+       go RunAutorenewal(existingCerts, inf.Config, ctx, inf.User)
+
+       api.WriteRespAlert(w, r, tc.InfoLevel, "Beginning async call to renew 
Let's Encrypt certificates.  This may take a few minutes.")
+
+}
+func RunAutorenewal(existingCerts []ExistingCerts, cfg *config.Config, ctx 
context.Context, currentUser *auth.CurrentUser) {
+       db, err := api.GetDB(ctx)
+       if err != nil {
+               log.Errorf("Error getting db: %s", err.Error())
+               return
+       }
+       tx, err := db.Begin()
+       if err != nil {
+               log.Errorf("Error getting tx: %s", err.Error())
+               return
+       }
+
+       logTx, err := db.Begin()
+       if err != nil {
+               log.Errorf("Error getting logTx: %s", err.Error())
+               return
+       }
+       defer logTx.Commit()
+
+       keysFound := ExpirationSummary{}
+
+       for _, ds := range existingCerts {
+               if !ds.Version.Valid || ds.Version.Int64 == 0 {
+                       continue
+               }
+
+               dsExpInfo := DsExpirationInfo{}
+               keyObj, ok, err := 
riaksvc.GetDeliveryServiceSSLKeysObjV15(ds.XmlId, 
strconv.Itoa(int(ds.Version.Int64)), tx, cfg.RiakAuthOptions, cfg.RiakPort)
+               if err != nil {
+                       log.Errorf("getting ssl keys for xmlId: %s and version: 
%s : %s", ds.XmlId, ds.Version.Int64, err.Error())
+                       dsExpInfo.XmlId = ds.XmlId
+                       dsExpInfo.Version = 
util.JSONIntStr(int(ds.Version.Int64))
+                       dsExpInfo.Error = errors.New("getting ssl keys for 
xmlId: " + ds.XmlId + " and version: " + strconv.Itoa(int(ds.Version.Int64)) + 
" :" + err.Error())
+                       keysFound.OtherExpirations = 
append(keysFound.OtherExpirations, dsExpInfo)
+                       continue
+               }
+               if !ok {
+                       log.Errorf("no object found for the specified key with 
xmlId: %s and version: %s", ds.XmlId, ds.Version.Int64)
 
 Review comment:
   Same as above RE: format specifiers

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to