@@ -12,6 +12,8 @@ use crate::{
12
12
Resource , Storelike , Value ,
13
13
} ;
14
14
15
+ use super :: utils:: return_success;
16
+
15
17
pub fn register_endpoint ( ) -> Endpoint {
16
18
Endpoint {
17
19
path : urls:: PATH_REGISTER . to_string ( ) ,
@@ -21,8 +23,8 @@ pub fn register_endpoint() -> Endpoint {
21
23
] . into ( ) ,
22
24
description : "Allows new users to easily, in one request, make both an Agent and a Drive. This drive will be created at the subdomain of `name`." . to_string ( ) ,
23
25
shortname : "register" . to_string ( ) ,
24
- handle : Some ( construct_register_redirect) ,
25
26
handle_post : None ,
27
+ handle : Some ( handle_register_name_and_email) ,
26
28
}
27
29
}
28
30
@@ -43,12 +45,17 @@ struct MailConfirmation {
43
45
pub name : String ,
44
46
}
45
47
46
- #[ tracing:: instrument( ) ]
47
- pub fn construct_register_redirect ( context : HandleGetContext ) -> AtomicResult < Resource > {
48
+ #[ tracing:: instrument]
49
+ pub fn handle_register_name_and_email ( context : HandleGetContext ) -> AtomicResult < Resource > {
50
+ let HandleGetContext {
51
+ subject,
52
+ store : _,
53
+ for_agent : _,
54
+ } = context;
48
55
let mut name_option = None ;
49
56
let mut email_option: Option < EmailAddress > = None ;
50
57
let store = context. store ;
51
- for ( k, v) in context . subject . query_pairs ( ) {
58
+ for ( k, v) in subject. query_pairs ( ) {
52
59
match k. as_ref ( ) {
53
60
"name" | urls:: NAME => name_option = Some ( v. to_string ( ) ) ,
54
61
"email" => email_option = Some ( EmailAddress :: new ( v. to_string ( ) ) ?) ,
@@ -93,14 +100,7 @@ pub fn construct_register_redirect(context: HandleGetContext) -> AtomicResult<Re
93
100
. unwrap_or_else ( |e| tracing:: error!( "Error sending email: {}" , e) ) ;
94
101
} ) ;
95
102
96
- // Here we probably want to return some sort of SuccesMessage page.
97
- // Not sure what that should be.
98
- let mut resource = Resource :: new_generate_subject ( store) ;
99
- resource. set_string ( urls:: DESCRIPTION . into ( ) , "success" , store) ?;
100
-
101
- // resource.set_propval(urls::, value, store)
102
-
103
- Ok ( resource)
103
+ return_success ( )
104
104
}
105
105
106
106
#[ tracing:: instrument( ) ]
0 commit comments