diff options
author | redmatrix <git@macgirvin.com> | 2016-04-14 18:51:06 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-14 18:51:06 -0700 |
commit | a8f7af20798de3bde73023c6e3f2b540e985767b (patch) | |
tree | c4c31417738b3d636e0615d4cfb3b0545ec358d4 /include/zot.php | |
parent | 7ae7fac2349555e9658b6c46dc6dd5316adff589 (diff) | |
download | volse-hubzilla-a8f7af20798de3bde73023c6e3f2b540e985767b.tar.gz volse-hubzilla-a8f7af20798de3bde73023c6e3f2b540e985767b.tar.bz2 volse-hubzilla-a8f7af20798de3bde73023c6e3f2b540e985767b.zip |
provide general purpose verification class, remove include/session.php (no longer used)
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/include/zot.php b/include/zot.php index a5ab56154..0cdf7fc87 100644 --- a/include/zot.php +++ b/include/zot.php @@ -4289,9 +4289,7 @@ function zot_reply_auth_check($data,$encrypted_packet) { // the web server. We should probably convert this to webserver time rather than DB time so // that the different clocks won't affect it and allow us to keep the time short. - q("delete from verify where type = 'auth' and created < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('30 MINUTE') - ); + Zotlabs\Zot\Verify::purge('auth','30 MINUTE'); $y = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", dbesc($sender_hash) @@ -4330,19 +4328,13 @@ function zot_reply_auth_check($data,$encrypted_packet) { // This additionally checks for forged sites since we already stored the expected result in meta // and we've already verified that this is them via zot_gethub() and that their key signed our token - $z = q("select id from verify where channel = %d and type = 'auth' and token = '%s' and meta = '%s' limit 1", - intval($c[0]['channel_id']), - dbesc($data['secret']), - dbesc($data['sender']['url']) - ); + + $z = Zotlabs\Zot\Verify::match('auth',$c[0]['channel_id'],$data['secret'],$data['sender']['url']); if (! $z) { logger('mod_zot: auth_check: verification key not found.'); $ret['message'] .= 'verification key not found' . EOL; json_return_and_die($ret); } - $r = q("delete from verify where id = %d", - intval($z[0]['id']) - ); $u = q("select account_service_class from account where account_id = %d limit 1", intval($c[0]['channel_account_id']) |