Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // 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 Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 5 | package caveats |
| 6 | |
| 7 | import ( |
| 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 |
| 13 | type 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 Sivakumar | dd0ddc2 | 2015-05-06 17:27:03 -0700 | [diff] [blame^] | 16 | // blessingName is the name used for the blessings that is being caveated. |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 17 | // 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 Sivakumar | dd0ddc2 | 2015-05-06 17:27:03 -0700 | [diff] [blame^] | 19 | Render(blessingName, state, redirectURL string, w http.ResponseWriter, r *http.Request) error |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 20 | // 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 | } |