teleport/lib/web/cookie.go

78 lines
1.7 KiB
Go

/*
Copyright 2015 Gravitational, Inc.
Licensed 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.
*/
package web
import (
"encoding/hex"
"encoding/json"
"net/http"
)
// SessionCookie stores information about active user and session
type SessionCookie struct {
User string `json:"user"`
SID string `json:"sid"`
}
func EncodeCookie(user, sid string) (string, error) {
bytes, err := json.Marshal(SessionCookie{User: user, SID: sid})
if err != nil {
return "", err
}
return hex.EncodeToString(bytes), nil
}
func DecodeCookie(b string) (*SessionCookie, error) {
bytes, err := hex.DecodeString(b)
if err != nil {
return nil, err
}
var c *SessionCookie
if err := json.Unmarshal(bytes, &c); err != nil {
return nil, err
}
return c, nil
}
func SetSession(w http.ResponseWriter, user, sid string) error {
d, err := EncodeCookie(user, sid)
if err != nil {
return err
}
c := &http.Cookie{
Name: "session",
Value: d,
Path: "/",
HttpOnly: true,
Secure: true,
}
http.SetCookie(w, c)
return nil
}
func ClearSession(w http.ResponseWriter) error {
http.SetCookie(w, &http.Cookie{
Name: "session",
Value: "",
Path: "/",
HttpOnly: true,
Secure: true,
})
return nil
}