mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
6fde3632ef
The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
36 lines
1 KiB
Go
36 lines
1 KiB
Go
package aetest
|
|
|
|
import (
|
|
"hash/crc32"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"google.golang.org/appengine/user"
|
|
)
|
|
|
|
// Login causes the provided Request to act as though issued by the given user.
|
|
func Login(u *user.User, req *http.Request) {
|
|
req.Header.Set("X-AppEngine-User-Email", u.Email)
|
|
id := u.ID
|
|
if id == "" {
|
|
id = strconv.Itoa(int(crc32.Checksum([]byte(u.Email), crc32.IEEETable)))
|
|
}
|
|
req.Header.Set("X-AppEngine-User-Id", id)
|
|
req.Header.Set("X-AppEngine-User-Federated-Identity", u.Email)
|
|
req.Header.Set("X-AppEngine-User-Federated-Provider", u.FederatedProvider)
|
|
if u.Admin {
|
|
req.Header.Set("X-AppEngine-User-Is-Admin", "1")
|
|
} else {
|
|
req.Header.Set("X-AppEngine-User-Is-Admin", "0")
|
|
}
|
|
}
|
|
|
|
// Logout causes the provided Request to act as though issued by a logged-out
|
|
// user.
|
|
func Logout(req *http.Request) {
|
|
req.Header.Del("X-AppEngine-User-Email")
|
|
req.Header.Del("X-AppEngine-User-Id")
|
|
req.Header.Del("X-AppEngine-User-Is-Admin")
|
|
req.Header.Del("X-AppEngine-User-Federated-Identity")
|
|
req.Header.Del("X-AppEngine-User-Federated-Provider")
|
|
}
|