LEFT | RIGHT |
1 package juju | 1 package juju |
2 | 2 |
3 import ( | 3 import ( |
4 "crypto/sha256" | 4 "crypto/sha256" |
5 "encoding/hex" | 5 "encoding/hex" |
6 "errors" | 6 "errors" |
7 "fmt" | 7 "fmt" |
8 "io" | 8 "io" |
9 "io/ioutil" | 9 "io/ioutil" |
10 "launchpad.net/goyaml" | 10 "launchpad.net/goyaml" |
(...skipping 26 matching lines...) Expand all Loading... |
37 func NewConn(environ environs.Environ) (*Conn, error) { | 37 func NewConn(environ environs.Environ) (*Conn, error) { |
38 info, _, err := environ.StateInfo() | 38 info, _, err := environ.StateInfo() |
39 if err != nil { | 39 if err != nil { |
40 return nil, err | 40 return nil, err |
41 } | 41 } |
42 password := environ.Config().AdminSecret() | 42 password := environ.Config().AdminSecret() |
43 if password == "" { | 43 if password == "" { |
44 return nil, fmt.Errorf("cannot connect without admin-secret") | 44 return nil, fmt.Errorf("cannot connect without admin-secret") |
45 } | 45 } |
46 info.Password = password | 46 info.Password = password |
47 » st, err := state.Open(info) | 47 » st, err := state.Open(info, state.DefaultDialTimeout) |
48 if state.IsUnauthorizedError(err) { | 48 if state.IsUnauthorizedError(err) { |
49 // We can't connect with the administrator password,; | 49 // We can't connect with the administrator password,; |
50 // perhaps this was the first connection and the | 50 // perhaps this was the first connection and the |
51 // password has not been changed yet. | 51 // password has not been changed yet. |
52 info.Password = trivial.PasswordHash(password) | 52 info.Password = trivial.PasswordHash(password) |
53 | 53 |
54 // We try for a while because we might succeed in | 54 // We try for a while because we might succeed in |
55 // connecting to mongo before the state has been | 55 // connecting to mongo before the state has been |
56 // initialized and the initial password set. | 56 // initialized and the initial password set. |
57 for a := redialStrategy.Start(); a.Next(); { | 57 for a := redialStrategy.Start(); a.Next(); { |
58 » » » st, err = state.Open(info) | 58 » » » st, err = state.Open(info, state.DefaultDialTimeout) |
59 if !state.IsUnauthorizedError(err) { | 59 if !state.IsUnauthorizedError(err) { |
60 break | 60 break |
61 } | 61 } |
62 } | 62 } |
63 if err != nil { | 63 if err != nil { |
64 return nil, err | 64 return nil, err |
65 } | 65 } |
66 if err := st.SetAdminMongoPassword(password); err != nil { | 66 if err := st.SetAdminMongoPassword(password); err != nil { |
67 return nil, err | 67 return nil, err |
68 } | 68 } |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 | 392 |
393 // strip removes from validated, any keys which are not also present in unvalida
ted. | 393 // strip removes from validated, any keys which are not also present in unvalida
ted. |
394 func strip(validated map[string]interface{}, unvalidated map[string]string) map[
string]interface{} { | 394 func strip(validated map[string]interface{}, unvalidated map[string]string) map[
string]interface{} { |
395 for k := range validated { | 395 for k := range validated { |
396 if _, ok := unvalidated[k]; !ok { | 396 if _, ok := unvalidated[k]; !ok { |
397 delete(validated, k) | 397 delete(validated, k) |
398 } | 398 } |
399 } | 399 } |
400 return validated | 400 return validated |
401 } | 401 } |
LEFT | RIGHT |