aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Zot
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-02-21 20:59:30 -0800
committerzotlabs <mike@macgirvin.com>2018-02-21 20:59:30 -0800
commit2d69b419ff9a0b2186d9479447f75f37b9102fa6 (patch)
treeef13efbd53a86466be7192883578b6f33512f882 /Zotlabs/Zot
parentfef3155e6ac04dcbc5b414b8dbc252267282dd47 (diff)
downloadvolse-hubzilla-2d69b419ff9a0b2186d9479447f75f37b9102fa6.tar.gz
volse-hubzilla-2d69b419ff9a0b2186d9479447f75f37b9102fa6.tar.bz2
volse-hubzilla-2d69b419ff9a0b2186d9479447f75f37b9102fa6.zip
move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the z6 re-org
Diffstat (limited to 'Zotlabs/Zot')
-rw-r--r--Zotlabs/Zot/Verify.php63
1 files changed, 0 insertions, 63 deletions
diff --git a/Zotlabs/Zot/Verify.php b/Zotlabs/Zot/Verify.php
deleted file mode 100644
index 7abe38d17..000000000
--- a/Zotlabs/Zot/Verify.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-
-namespace Zotlabs\Zot;
-
-
-class Verify {
-
- function create($type,$channel_id,$token,$meta) {
- return q("insert into verify ( vtype, channel, token, meta, created ) values ( '%s', %d, '%s', '%s', '%s' )",
- dbesc($type),
- intval($channel_id),
- dbesc($token),
- dbesc($meta),
- dbesc(datetime_convert())
- );
- }
-
- function match($type,$channel_id,$token,$meta) {
- $r = q("select id from verify where vtype = '%s' and channel = %d and token = '%s' and meta = '%s' limit 1",
- dbesc($type),
- intval($channel_id),
- dbesc($token),
- dbesc($meta)
- );
- if($r) {
- q("delete from verify where id = %d",
- intval($r[0]['id'])
- );
- return true;
- }
- return false;
- }
-
- function get_meta($type,$channel_id,$token) {
- $r = q("select id, meta from verify where vtype = '%s' and channel = %d and token = '%s' limit 1",
- dbesc($type),
- intval($channel_id),
- dbesc($token)
- );
- if($r) {
- q("delete from verify where id = %d",
- intval($r[0]['id'])
- );
- return $r[0]['meta'];
- }
- return false;
- }
-
- /**
- * @brief Purge entries of a verify-type older than interval.
- *
- * @param string $type Verify type
- * @param string $interval SQL compatible time interval
- */
- function purge($type, $interval) {
- q("delete from verify where vtype = '%s' and created < %s - INTERVAL %s",
- dbesc($type),
- db_utcnow(),
- db_quoteinterval($interval)
- );
- }
-
-} \ No newline at end of file