blob: 487c5a65a2e55348246081208c00e6c682a7cbc1 [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Suharsh Sivakumara76dba62014-12-22 16:00:34 -08005package caveats
6
7import (
8 "net/http"
9)
10
11// CaveatSelector is used to render a web page where the user can select caveats
12// to be added to a blessing being granted
13type CaveatSelector interface {
14 // Render renders the caveat input form. When the user has completed inputing caveats,
15 // Render should redirect to the specified redirect route.
Suharsh Sivakumardd0ddc22015-05-06 17:27:03 -070016 // blessingName is the name used for the blessings that is being caveated.
Suharsh Sivakumara76dba62014-12-22 16:00:34 -080017 // state is any state passed by the caller (e.g., for CSRF mitigation) and is returned by ParseSelections.
18 // redirectRoute is the route to be returned to.
Suharsh Sivakumardd0ddc22015-05-06 17:27:03 -070019 Render(blessingName, state, redirectURL string, w http.ResponseWriter, r *http.Request) error
Suharsh Sivakumara76dba62014-12-22 16:00:34 -080020 // ParseSelections parse the users choices of Caveats, and returns the information needed to create them,
21 // the state passed to Render, and any additionalExtension selected by the user to further extend the blessing.
22 ParseSelections(r *http.Request) (caveats []CaveatInfo, state string, additionalExtension string, err error)
23}