aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Verify.php
blob: f8dc8f8d4cd98c2137456ba52c4c0ab7dafad64f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

namespace Zotlabs\Lib;


class Verify {

	public static 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())
		);
	}

	public static 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;
	}

	public static 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
	 */
	public static function purge($type, $interval) {
		q("delete from verify where vtype = '%s' and created < %s - INTERVAL %s",
			dbesc($type),
			db_utcnow(),
			db_quoteinterval($interval)
		);
	}

}