external-users-wp.php 3.91 KB
Newer Older
Scott committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
/*
	Question2Answer by Gideon Greenspan and contributors
	http://www.question2answer.org/

	File: qa-include/qa-external-users-wp.php
	Description: External user functions for WordPress integration


	This program is free software; you can redistribute it and/or
	modify it under the terms of the GNU General Public License
	as published by the Free Software Foundation; either version 2
	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 General Public License for more details.

	More about this license: http://www.question2answer.org/license.php
*/

Scott committed
23 24 25 26
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
	header('Location: ../');
	exit;
}
Scott committed
27 28


Scott committed
29 30 31 32
function qa_get_mysql_user_column_type()
{
	return 'BIGINT UNSIGNED';
}
Scott committed
33 34


Scott committed
35 36 37 38 39 40 41 42
function qa_get_login_links($relative_url_prefix, $redirect_back_to_url)
{
	return array(
		'login' => wp_login_url(qa_opt('site_url') . $redirect_back_to_url),
		'register' => function_exists('wp_registration_url') ? wp_registration_url() : site_url('wp-login.php?action=register'),
		'logout' => strtr(wp_logout_url(), array('&amp;' => '&')),
	);
}
Scott committed
43 44


Scott committed
45 46 47
function qa_get_logged_in_user()
{
	$wordpressuser = wp_get_current_user();
Scott committed
48

Scott committed
49 50
	if ($wordpressuser->ID == 0)
		return null;
Scott committed
51

Scott committed
52 53 54 55 56 57 58 59 60
	else {
		if (current_user_can('administrator'))
			$level = QA_USER_LEVEL_ADMIN;
		elseif (current_user_can('editor'))
			$level = QA_USER_LEVEL_EDITOR;
		elseif (current_user_can('contributor'))
			$level = QA_USER_LEVEL_EXPERT;
		else
			$level = QA_USER_LEVEL_BASIC;
Scott committed
61

Scott committed
62 63 64 65 66 67
		return array(
			'userid' => $wordpressuser->ID,
			'publicusername' => $wordpressuser->user_nicename,
			'email' => $wordpressuser->user_email,
			'level' => $level,
		);
Scott committed
68
	}
Scott committed
69
}
Scott committed
70 71


Scott committed
72 73 74
function qa_get_user_email($userid)
{
	$user = get_userdata($userid);
Scott committed
75

Scott committed
76 77
	return @$user->user_email;
}
Scott committed
78 79


Scott committed
80 81 82
function qa_get_userids_from_public($publicusernames)
{
	global $wpdb;
Scott committed
83

Scott committed
84 85 86 87 88 89 90 91
	if (count($publicusernames))
		return qa_db_read_all_assoc(qa_db_query_sub(
			'SELECT user_nicename, ID FROM ' . $wpdb->base_prefix . 'users WHERE user_nicename IN ($)',
			$publicusernames
		), 'user_nicename', 'ID');
	else
		return array();
}
Scott committed
92 93


Scott committed
94 95 96
function qa_get_public_from_userids($userids)
{
	global $wpdb, $qa_cache_wp_user_emails;
Scott committed
97

Scott committed
98 99 100
	if (count($userids)) {
		$useridtopublic = array();
		$qa_cache_wp_user_emails = array();
Scott committed
101

Scott committed
102 103 104 105
		$userfields = qa_db_read_all_assoc(qa_db_query_sub(
			'SELECT ID, user_nicename, user_email FROM ' . $wpdb->base_prefix . 'users WHERE ID IN (#)',
			$userids
		), 'ID');
Scott committed
106

Scott committed
107 108 109 110
		foreach ($userfields as $id => $fields) {
			$useridtopublic[$id] = $fields['user_nicename'];
			$qa_cache_wp_user_emails[$id] = $fields['user_email'];
		}
Scott committed
111

Scott committed
112
		return $useridtopublic;
Scott committed
113

Scott committed
114 115 116
	} else
		return array();
}
Scott committed
117 118


Scott committed
119 120 121
function qa_get_logged_in_user_html($logged_in_user, $relative_url_prefix)
{
	$publicusername = $logged_in_user['publicusername'];
Scott committed
122

Scott committed
123 124
	return '<a href="' . qa_path_html('user/' . $publicusername) . '" class="qa-user-link">' . htmlspecialchars($publicusername) . '</a>';
}
Scott committed
125 126


Scott committed
127 128 129
function qa_get_users_html($userids, $should_include_link, $relative_url_prefix)
{
	$useridtopublic = qa_get_public_from_userids($userids);
Scott committed
130

Scott committed
131
	$usershtml = array();
Scott committed
132

Scott committed
133 134 135 136
	foreach ($userids as $userid) {
		$publicusername = $useridtopublic[$userid];

		$usershtml[$userid] = htmlspecialchars($publicusername);
Scott committed
137

Scott committed
138 139 140
		if ($should_include_link)
			$usershtml[$userid] = '<a href="' . qa_path_html('user/' . $publicusername) . '" class="qa-user-link">' . $usershtml[$userid] . '</a>';
	}
Scott committed
141

Scott committed
142 143
	return $usershtml;
}
Scott committed
144 145


Scott committed
146 147 148
function qa_avatar_html_from_userid($userid, $size, $padding)
{
	require_once QA_INCLUDE_DIR . 'app/format.php';
Scott committed
149

Scott committed
150
	global $qa_cache_wp_user_emails;
Scott committed
151

Scott committed
152 153
	if (isset($qa_cache_wp_user_emails[$userid]))
		return qa_get_gravatar_html($qa_cache_wp_user_emails[$userid], $size);
Scott committed
154

Scott committed
155 156
	return null;
}
Scott committed
157 158


Scott committed
159 160 161
function qa_user_report_action($userid, $action)
{
}