2018-05-27 22:40:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import ()
|
|
|
|
|
|
|
|
func commenterGetByHex(commenterHex string) (commenter, error) {
|
|
|
|
if commenterHex == "" {
|
|
|
|
return commenter{}, errorMissingField
|
|
|
|
}
|
|
|
|
|
|
|
|
statement := `
|
|
|
|
SELECT commenterHex, email, name, link, photo, provider, joinDate
|
|
|
|
FROM commenters
|
2018-06-07 15:41:26 +08:00
|
|
|
WHERE commenterHex = $1;
|
2018-05-27 22:40:42 +08:00
|
|
|
`
|
|
|
|
row := db.QueryRow(statement, commenterHex)
|
|
|
|
|
|
|
|
c := commenter{}
|
|
|
|
if err := row.Scan(&c.CommenterHex, &c.Email, &c.Name, &c.Link, &c.Photo, &c.Provider, &c.JoinDate); err != nil {
|
2018-06-07 00:51:31 +08:00
|
|
|
// TODO: is this the only error?
|
|
|
|
return commenter{}, errorNoSuchCommenter
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
2018-06-07 15:41:02 +08:00
|
|
|
func commenterGetByEmail(provider string, email string) (commenter, error) {
|
|
|
|
if provider == "" || email == "" {
|
|
|
|
return commenter{}, errorMissingField
|
|
|
|
}
|
|
|
|
|
|
|
|
statement := `
|
|
|
|
SELECT commenterHex, email, name, link, photo, provider, joinDate
|
|
|
|
FROM commenters
|
|
|
|
WHERE email = $1 AND provider = $2;
|
|
|
|
`
|
|
|
|
row := db.QueryRow(statement, email, provider)
|
|
|
|
|
|
|
|
c := commenter{}
|
|
|
|
if err := row.Scan(&c.CommenterHex, &c.Email, &c.Name, &c.Link, &c.Photo, &c.Provider, &c.JoinDate); err != nil {
|
|
|
|
// TODO: is this the only error?
|
|
|
|
return commenter{}, errorNoSuchCommenter
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
2018-06-20 11:29:55 +08:00
|
|
|
func commenterGetByCommenterToken(commenterToken string) (commenter, error) {
|
|
|
|
if commenterToken == "" {
|
2018-05-27 22:40:42 +08:00
|
|
|
return commenter{}, errorMissingField
|
|
|
|
}
|
|
|
|
|
|
|
|
statement := `
|
|
|
|
SELECT commenterHex
|
|
|
|
FROM commenterSessions
|
2018-06-20 11:29:55 +08:00
|
|
|
WHERE commenterToken = $1;
|
2018-05-27 22:40:42 +08:00
|
|
|
`
|
2018-06-20 11:29:55 +08:00
|
|
|
row := db.QueryRow(statement, commenterToken)
|
2018-05-27 22:40:42 +08:00
|
|
|
|
|
|
|
var commenterHex string
|
|
|
|
if err := row.Scan(&commenterHex); err != nil {
|
|
|
|
// TODO: is the only error?
|
2018-06-20 11:29:55 +08:00
|
|
|
return commenter{}, errorNoSuchToken
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
|
2018-06-07 00:51:31 +08:00
|
|
|
if commenterHex == "none" {
|
2018-06-20 11:29:55 +08:00
|
|
|
return commenter{}, errorNoSuchToken
|
2018-06-07 00:51:31 +08:00
|
|
|
}
|
|
|
|
|
2019-02-19 04:39:51 +08:00
|
|
|
// TODO: use a join instead of two queries?
|
2018-05-27 22:40:42 +08:00
|
|
|
return commenterGetByHex(commenterHex)
|
|
|
|
}
|