summaryrefslogtreecommitdiff
path: root/lib/openid.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-17 10:49:42 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-17 10:49:42 -0400
commit43d0c82c9c74798ed2d2174159a2e3aa6f957864 (patch)
tree6b39028b9ca17c8078d061d4d98ef552dd5b237d /lib/openid.php
parentc2b5531af818c017822643f9c8bded7ba702361a (diff)
beginnings of OpenID login
darcs-hash:20080617144942-84dde-a2a1040a42254903a64cff0aae3c1912ed951473.gz
Diffstat (limited to 'lib/openid.php')
-rw-r--r--lib/openid.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/openid.php b/lib/openid.php
new file mode 100644
index 000000000..2485976ee
--- /dev/null
+++ b/lib/openid.php
@@ -0,0 +1,40 @@
+<?php
+/*
+ * Laconica - a distributed open-source microblogging tool
+ * Copyright (C) 2008, Controlez-Vous, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('LACONICA')) { exit(1); }
+
+require_once('Auth/OpenID/Consumer.php');
+require_once('Auth/OpenID/MySQLStore.php');
+
+function oid_store() {
+ static $store = NULL;
+ if (!$store) {
+ # Can't be called statically
+ $user = new User();
+ $conn = $user->getDatabaseConnection();
+ $store = new Auth_OpenID_SQLStore($conn);
+ }
+ return $store;
+}
+
+function oid_consumer() {
+ $store = oid_store();
+ $consumer = Auth_OpenID_Consumer($store);
+ return $consumer;
+} \ No newline at end of file