2017-01-27 00:08:52 +00:00
package okta
import (
2018-01-08 18:31:38 +00:00
"context"
2017-01-27 00:08:52 +00:00
"fmt"
"net/url"
2017-08-24 22:18:05 +00:00
"time"
2017-08-31 02:37:21 +00:00
"github.com/chrismalek/oktasdk-go/okta"
"github.com/hashicorp/go-cleanhttp"
2017-01-27 00:08:52 +00:00
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
2017-09-15 04:27:45 +00:00
const (
defaultBaseURL = "okta.com"
previewBaseURL = "oktapreview.com"
)
2017-01-27 00:08:52 +00:00
func pathConfig ( b * backend ) * framework . Path {
return & framework . Path {
Pattern : ` config ` ,
Fields : map [ string ] * framework . FieldSchema {
"organization" : & framework . FieldSchema {
Type : framework . TypeString ,
2017-09-15 04:27:45 +00:00
Description : "(DEPRECATED) Okta organization to authenticate against. Use org_name instead." ,
2017-08-31 02:37:21 +00:00
} ,
"org_name" : & framework . FieldSchema {
Type : framework . TypeString ,
Description : "Name of the organization to be used in the Okta API." ,
2017-01-27 00:08:52 +00:00
} ,
"token" : & framework . FieldSchema {
Type : framework . TypeString ,
2017-09-15 04:27:45 +00:00
Description : "(DEPRECATED) Okta admin API token. Use api_token instead." ,
2017-08-31 02:37:21 +00:00
} ,
"api_token" : & framework . FieldSchema {
Type : framework . TypeString ,
Description : "Okta API key." ,
2017-01-27 00:08:52 +00:00
} ,
"base_url" : & framework . FieldSchema {
2017-09-15 04:27:45 +00:00
Type : framework . TypeString ,
2018-03-20 18:54:10 +00:00
Description : ` The base domain to use for the Okta API. When not specified in the configuration, "okta.com" is used. ` ,
2017-08-31 02:37:21 +00:00
} ,
"production" : & framework . FieldSchema {
Type : framework . TypeBool ,
2017-09-15 04:27:45 +00:00
Description : ` (DEPRECATED) Use base_url. ` ,
2017-01-27 00:08:52 +00:00
} ,
2017-07-05 13:42:37 +00:00
"ttl" : & framework . FieldSchema {
Type : framework . TypeDurationSecond ,
Description : ` Duration after which authentication will be expired ` ,
} ,
"max_ttl" : & framework . FieldSchema {
Type : framework . TypeDurationSecond ,
Description : ` Maximum duration after which authentication will be expired ` ,
} ,
2018-02-09 22:03:49 +00:00
"bypass_okta_mfa" : & framework . FieldSchema {
Type : framework . TypeBool ,
Description : ` When set true, requests by Okta for a MFA check will be bypassed. This also disallows certain status checks on the account, such as whether the password is expired. ` ,
} ,
2017-01-27 00:08:52 +00:00
} ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
logical . ReadOperation : b . pathConfigRead ,
logical . CreateOperation : b . pathConfigWrite ,
logical . UpdateOperation : b . pathConfigWrite ,
} ,
ExistenceCheck : b . pathConfigExistenceCheck ,
HelpSynopsis : pathConfigHelp ,
}
}
// Config returns the configuration for this backend.
2018-01-19 06:44:44 +00:00
func ( b * backend ) Config ( ctx context . Context , s logical . Storage ) ( * ConfigEntry , error ) {
entry , err := s . Get ( ctx , "config" )
2017-01-27 00:08:52 +00:00
if err != nil {
return nil , err
}
if entry == nil {
return nil , nil
}
var result ConfigEntry
if entry != nil {
if err := entry . DecodeJSON ( & result ) ; err != nil {
return nil , err
}
}
return & result , nil
}
2018-01-08 18:31:38 +00:00
func ( b * backend ) pathConfigRead ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
cfg , err := b . Config ( ctx , req . Storage )
2017-01-27 00:08:52 +00:00
if err != nil {
return nil , err
}
if cfg == nil {
return nil , nil
}
resp := & logical . Response {
Data : map [ string ] interface { } {
2018-02-09 22:03:49 +00:00
"organization" : cfg . Org ,
"org_name" : cfg . Org ,
"ttl" : cfg . TTL . Seconds ( ) ,
"max_ttl" : cfg . MaxTTL . Seconds ( ) ,
"bypass_okta_mfa" : cfg . BypassOktaMFA ,
2017-01-27 00:08:52 +00:00
} ,
}
2017-08-31 02:37:21 +00:00
if cfg . BaseURL != "" {
resp . Data [ "base_url" ] = cfg . BaseURL
}
2017-09-15 04:27:45 +00:00
if cfg . Production != nil {
resp . Data [ "production" ] = * cfg . Production
}
2017-01-27 00:08:52 +00:00
2018-02-09 22:03:49 +00:00
if cfg . BypassOktaMFA {
resp . AddWarning ( "Okta MFA bypass is configured. In addition to ignoring Okta MFA requests, certain other account statuses will not be seen, such as PASSWORD_EXPIRED. Authentication will succeed in these cases." )
}
2017-01-27 00:08:52 +00:00
return resp , nil
}
2018-01-08 18:31:38 +00:00
func ( b * backend ) pathConfigWrite ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
cfg , err := b . Config ( ctx , req . Storage )
2017-01-27 00:08:52 +00:00
if err != nil {
return nil , err
}
// Due to the existence check, entry will only be nil if it's a create
// operation, so just create a new one
if cfg == nil {
2017-08-24 22:18:05 +00:00
cfg = & ConfigEntry { }
}
2017-08-31 02:37:21 +00:00
org , ok := d . GetOk ( "org_name" )
2017-08-24 22:18:05 +00:00
if ok {
cfg . Org = org . ( string )
2017-08-31 02:37:21 +00:00
}
if cfg . Org == "" {
org , ok = d . GetOk ( "organization" )
if ok {
cfg . Org = org . ( string )
}
}
if cfg . Org == "" && req . Operation == logical . CreateOperation {
return logical . ErrorResponse ( "org_name is missing" ) , nil
2017-01-27 00:08:52 +00:00
}
2017-08-31 02:37:21 +00:00
token , ok := d . GetOk ( "api_token" )
2017-01-27 00:08:52 +00:00
if ok {
cfg . Token = token . ( string )
2017-08-31 02:37:21 +00:00
}
if cfg . Token == "" {
token , ok = d . GetOk ( "token" )
if ok {
cfg . Token = token . ( string )
}
}
2017-01-27 00:08:52 +00:00
2017-09-15 04:27:45 +00:00
baseURLRaw , ok := d . GetOk ( "base_url" )
2017-01-27 00:08:52 +00:00
if ok {
2017-09-15 04:27:45 +00:00
baseURL := baseURLRaw . ( string )
_ , err = url . Parse ( fmt . Sprintf ( "https://%s,%s" , cfg . Org , baseURL ) )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Error parsing given base_url: %s" , err ) ) , nil
2017-01-27 00:08:52 +00:00
}
2017-09-15 04:27:45 +00:00
cfg . BaseURL = baseURL
2017-01-27 00:08:52 +00:00
}
2017-09-15 04:27:45 +00:00
// We only care about the production flag when base_url is not set. It is
// for compatibility reasons.
if cfg . BaseURL == "" {
productionRaw , ok := d . GetOk ( "production" )
if ok {
production := productionRaw . ( bool )
cfg . Production = & production
}
} else {
// clear out old production flag if base_url is set
cfg . Production = nil
}
2017-08-31 02:37:21 +00:00
2018-02-09 22:03:49 +00:00
bypass , ok := d . GetOk ( "bypass_okta_mfa" )
if ok {
cfg . BypassOktaMFA = bypass . ( bool )
}
2017-08-24 22:18:05 +00:00
ttl , ok := d . GetOk ( "ttl" )
if ok {
cfg . TTL = time . Duration ( ttl . ( int ) ) * time . Second
} else if req . Operation == logical . CreateOperation {
cfg . TTL = time . Duration ( d . Get ( "ttl" ) . ( int ) ) * time . Second
}
2017-07-05 13:42:37 +00:00
2017-08-24 22:18:05 +00:00
maxTTL , ok := d . GetOk ( "max_ttl" )
if ok {
cfg . MaxTTL = time . Duration ( maxTTL . ( int ) ) * time . Second
} else if req . Operation == logical . CreateOperation {
cfg . MaxTTL = time . Duration ( d . Get ( "max_ttl" ) . ( int ) ) * time . Second
}
2017-07-05 13:42:37 +00:00
2017-01-27 00:08:52 +00:00
jsonCfg , err := logical . StorageEntryJSON ( "config" , cfg )
if err != nil {
return nil , err
}
2018-01-19 06:44:44 +00:00
if err := req . Storage . Put ( ctx , jsonCfg ) ; err != nil {
2017-01-27 00:08:52 +00:00
return nil , err
}
2018-02-09 22:03:49 +00:00
var resp * logical . Response
if cfg . BypassOktaMFA {
resp = new ( logical . Response )
resp . AddWarning ( "Okta MFA bypass is configured. In addition to ignoring Okta MFA requests, certain other account statuses will not be seen, such as PASSWORD_EXPIRED. Authentication will succeed in these cases." )
}
return resp , nil
2017-01-27 00:08:52 +00:00
}
2018-01-08 18:31:38 +00:00
func ( b * backend ) pathConfigExistenceCheck ( ctx context . Context , req * logical . Request , d * framework . FieldData ) ( bool , error ) {
2018-01-19 06:44:44 +00:00
cfg , err := b . Config ( ctx , req . Storage )
2017-01-27 00:08:52 +00:00
if err != nil {
return false , err
}
return cfg != nil , nil
}
// OktaClient creates a basic okta client connection
func ( c * ConfigEntry ) OktaClient ( ) * okta . Client {
2017-09-15 04:27:45 +00:00
baseURL := defaultBaseURL
2017-08-31 02:37:21 +00:00
if c . Production != nil {
2017-09-15 04:27:45 +00:00
if ! * c . Production {
baseURL = previewBaseURL
}
2017-01-27 00:08:52 +00:00
}
2017-08-31 02:37:21 +00:00
if c . BaseURL != "" {
2017-09-15 04:27:45 +00:00
baseURL = c . BaseURL
2017-01-27 00:08:52 +00:00
}
2017-09-15 04:27:45 +00:00
// We validate config on input and errors are only returned when parsing URLs
client , _ := okta . NewClientWithDomain ( cleanhttp . DefaultClient ( ) , c . Org , baseURL , c . Token )
return client
2017-01-27 00:08:52 +00:00
}
// ConfigEntry for Okta
type ConfigEntry struct {
2018-02-09 22:03:49 +00:00
Org string ` json:"organization" `
Token string ` json:"token" `
BaseURL string ` json:"base_url" `
Production * bool ` json:"is_production,omitempty" `
TTL time . Duration ` json:"ttl" `
MaxTTL time . Duration ` json:"max_ttl" `
BypassOktaMFA bool ` json:"bypass_okta_mfa" `
2017-01-27 00:08:52 +00:00
}
const pathConfigHelp = `
This endpoint allows you to configure the Okta and its
configuration options .
The Okta organization are the characters at the front of the URL for Okta .
Example https : //ORG.okta.com
`