Skip to content

Commit 3e9ed18

Browse files
committed
drop license from verify process
1 parent 7c81eac commit 3e9ed18

File tree

5 files changed

+24
-228
lines changed

5 files changed

+24
-228
lines changed

lib/Controller/Verify/Company.php

-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function post($REQ, $RES, $ARG)
7474
'meta' => json_encode($_SESSION),
7575
]);
7676

77-
$_SESSION['verify']['company']['done'] = true;
78-
7977
return $RES->withRedirect(sprintf('/verify?_=%s', $_GET['_']));
8078

8179
break;

lib/Controller/Verify/License.php

-57
This file was deleted.

lib/Controller/Verify/Main.php

+24-32
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,10 @@ function __invoke($REQ, $RES, $ARG)
2121
{
2222
if (empty($_SESSION['verify'])) {
2323
$_SESSION['verify'] = [
24-
'contact' => [],
25-
'email' => [],
26-
'password' => [],
27-
'iso3166-1' => [],
28-
'iso3166-2' => [],
29-
'tz' => [],
30-
'phone' => [],
24+
'phone' => [
25+
'done' => true,
26+
],
3127
'company' => [],
32-
'license' => [],
3328
];
3429
}
3530

@@ -86,37 +81,34 @@ function guessNextStep($RES, $act_data)
8681
}
8782

8883
// 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));
10490
}
10591

10692
// 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+
]);
115106

116107
$RES = $RES->withAttribute('verify-done', true);
117108
$RES = $RES->withAttribute('Contact', $act_data['contact']);
118109

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
120112

121113
}
122114
}

lib/Module/Verify.php

-3
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,5 @@ function __invoke($app)
3535
$app->get('/company', 'OpenTHC\SSO\Controller\Verify\Company')->setName('verify/company');
3636
$app->post('/company', 'OpenTHC\SSO\Controller\Verify\Company:post')->setName('verify/company:post');
3737

38-
$app->get('/license', 'OpenTHC\SSO\Controller\Verify\License')->setName('verify/license');
39-
$app->post('/license', 'OpenTHC\SSO\Controller\Verify\License:post')->setName('verify/license:post');
40-
4138
}
4239
}

view/verify/license.php

-134
This file was deleted.

0 commit comments

Comments
 (0)