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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
<?php
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: commenter_auth_lib.php 1174 2008-01-08 21:02:50Z bchoate $
global $_commenter_auths;
$provider = new OpenIDCommenterAuth();
$_commenter_auths[$provider->get_key()] = $provider;
$provider = new VoxCommenterAuth();
$_commenter_auths[$provider->get_key()] = $provider;
$provider = new LiveJournalCommenterAuth();
$_commenter_auths[$provider->get_key()] = $provider;
$provider = new TypeKeyCommenterAuth();
$_commenter_auths[$provider->get_key()] = $provider;
function _auth_icon_url($static_path, $author) {
$auth_type = $author["author_auth_type"];
if (!$auth_type) {
return '';
}
if ( $author["author_type"] == 1 ) {
return $static_path . 'images/comment/mt_logo.png';
}
global $_commenter_auths;
$authenticator = $_commenter_auths[$auth_type];
if (!isset($authenticator)) {
return '';
}
$logo = $authenticator->get_logo_small();
if ( !preg_match("/^https?:\/\//", $logo) || !preg_match("/^\//", $logo) ) {
$logo = $static_path . $logo;
}
return $logo;
}
class BaseCommenterAuthProvider {
// Abstract Method (needs override)
function get_key() { }
function get_label() { }
function get_logo() { }
function get_logo_small() { }
}
class LiveJournalCommenterAuth extends BaseCommenterAuthProvider {
function get_key() {
return 'LiveJournal';
}
function get_label() {
return 'LiveJournal Commenter Authenticator';
}
function get_logo() {
return 'images/comment/signin_livejournal.png';
}
function get_logo_small() {
return 'images/comment/livejournal_logo.png';
}
}
class VoxCommenterAuth extends BaseCommenterAuthProvider {
function get_key() {
return 'Vox';
}
function get_label() {
return 'Vox Commenter Authenticator';
}
function get_logo() {
return 'images/comment/signin_vox.png';
}
function get_logo_small() {
return 'images/comment/vox_logo.png';
}
}
class OpenIDCommenterAuth extends BaseCommenterAuthProvider {
function get_key() {
return 'OpenID';
}
function get_label() {
return 'OpenID Commenter Authenticator';
}
function get_logo() {
return 'images/comment/signin_openid.png';
}
function get_logo_small() {
return 'images/comment/openid_logo.png';
}
}
class TypeKeyCommenterAuth extends BaseCommenterAuthProvider {
function get_key() {
return 'TypeKey';
}
function get_label() {
return 'TypeKey Commenter Authenticator';
}
function get_logo() {
return 'images/comment/signin_typekey.png';
}
function get_logo_small() {
return 'images/comment/typekey_logo.png';
}
}
?>
|