+ log.Error("Couldn't decode readReq form request: %v\n", err)
+ return ErrBadFormData
+ }
+ }
+
+ if readReq.Alias == "" {
+ return impart.HTTPError{http.StatusBadRequest, "Need a collection `alias` to read."}
+ }
+ if readReq.Pass == "" {
+ return impart.HTTPError{http.StatusBadRequest, "Please supply a password."}
+ }
+
+ var collHashedPass []byte
+ err := app.db.QueryRow("SELECT password FROM collectionpasswords INNER JOIN collections ON id = collection_id WHERE alias = ?", readReq.Alias).Scan(&collHashedPass)
+ if err != nil {
+ if err == sql.ErrNoRows {
+ log.Error("No collectionpassword found when trying to read collection %s", readReq.Alias)
+ return impart.HTTPError{http.StatusInternalServerError, "Something went very wrong. The humans have been alerted."}
+ }
+ return err
+ }
+
+ if !auth.Authenticated(collHashedPass, []byte(readReq.Pass)) {
<p class="error" id="create-error">Date format should be: <span class="mono"><abbr title="The full year">YYYY</abbr>-<abbr title="The numeric month of the year, where January = 1, with a zero in front if less than 10">MM</abbr>-<abbr title="The day of the month, with a zero in front if less than 10">DD</abbr> <abbr title="The hour (00-23), with a zero in front if less than 10.">HH</abbr>:<abbr title="The minute of the hour (00-59), with a zero in front if less than 10.">MM</abbr>:<abbr title="The seconds (00-59), with a zero in front if less than 10.">SS</abbr></span></p>