@@ -21,15 +21,10 @@ function __invoke($REQ, $RES, $ARG)
21
21
{
22
22
if (empty ($ _SESSION ['verify ' ])) {
23
23
$ _SESSION ['verify ' ] = [
24
- 'contact ' => [],
25
- 'email ' => [],
26
- 'password ' => [],
27
- 'iso3166-1 ' => [],
28
- 'iso3166-2 ' => [],
29
- 'tz ' => [],
30
- 'phone ' => [],
24
+ 'phone ' => [
25
+ 'done ' => true ,
26
+ ],
31
27
'company ' => [],
32
- 'license ' => [],
33
28
];
34
29
}
35
30
@@ -86,37 +81,34 @@ function guessNextStep($RES, $act_data)
86
81
}
87
82
88
83
// Company
89
- if (empty ($ _SESSION ['verify ' ]['company ' ]['done ' ])) {
90
-
91
- $ dbc_auth = $ this ->_container ->DBC_AUTH ;
92
- $ chk = $ dbc_auth ->fetchOne ('SELECT count(id) FROM auth_company_contact WHERE contact_id = :ct0 ' , [
93
- ':ct0 ' => $ CT0 ['id ' ],
94
- ]);
95
-
96
- if (empty ($ chk )) {
97
- return $ RES ->withRedirect (sprintf ('/verify/company?_=%s ' , $ tok ));
98
- }
99
-
100
- }
101
-
102
- if (empty ($ _SESSION ['verify ' ]['license ' ])) {
103
- return $ RES ->withRedirect (sprintf ('/verify/license?_=%s ' , $ tok ));
84
+ $ dbc_auth = $ this ->_container ->DBC_AUTH ;
85
+ $ chk = $ dbc_auth ->fetchOne ('SELECT count(id) FROM auth_company_contact WHERE contact_id = :ct0 ' , [
86
+ ':ct0 ' => $ CT0 ['id ' ],
87
+ ]);
88
+ if (empty ($ chk )) {
89
+ return $ RES ->withRedirect (sprintf ('/verify/company?_=%s ' , $ tok ));
104
90
}
105
91
106
92
// Update Contact Status
107
- // $CT0['stat'] = Contact::STAT_LIVE;
108
- // $CT0->save();
109
-
110
- // $dbc_auth->insert('log_event', [
111
- // 'contact_id' => $CT0['id'],
112
- // 'code' => 'Contact/Account/Live',
113
- // 'meta' => json_encode($_SESSION),
114
- // ]);
93
+ $ dbc = $ this ->_container ->DBC_AUTH ;
94
+ $ CT1 = new Auth_Contact ($ dbc , $ act_data ['contact ' ]['id ' ]);
95
+ $ CT1 ['stat ' ] = Contact::STAT_LIVE ;
96
+ $ CT1 ->save ('Account/Contact/Verify ' );
97
+
98
+ $ dbc ->insert ('log_event ' , [
99
+ 'contact_id ' => $ CT0 ['id ' ],
100
+ 'code ' => 'Contact/Account/Live ' ,
101
+ 'meta ' => json_encode ([
102
+ 'Contact ' => $ CT1 ,
103
+ '_SESSION ' => $ _SESSION ,
104
+ ]),
105
+ ]);
115
106
116
107
$ RES = $ RES ->withAttribute ('verify-done ' , true );
117
108
$ RES = $ RES ->withAttribute ('Contact ' , $ act_data ['contact ' ]);
118
109
119
- return $ RES ->withRedirect ('/done?e=CVM-130 ' );
110
+ return $ RES ->withRedirect ('/done?e=CVM-119 ' ); // Prompt to Sign-In
111
+ return $ RES ->withRedirect ('/done?e=CVM-130 ' ); // Prompt to Wait for Activation
120
112
121
113
}
122
114
}
0 commit comments