uc_client与ucenter通信原理
发布:smiling 来源: PHP粉丝网 添加日期:2014-04-22 11:01:54 浏览: 评论:0
以用户登录为例介绍,其它注销,改密码,消息,头像,好友均类同.
1.从用户xxx在某一应用程序的login.php,输入用户名,密码讲起。
先用uc_user_login函数到uc server验证此用户和密码,如正确,则写入session,写入cookies,并更新应用程序会员表中的登录ip,登录时间。用户感觉不到这个过程。
2.然后通过uc_user_synlogin通知uc server 用户xxx登录成功,这个过程可能使用ajax,用户感觉不到通知过程。
3.uc server收到这个消息后,马上命令手下,把xxx登录的消息,像令牌环一样,发给所有愿意接收(后台中那个是否开启同步登录)这个消息的其它应用程序。其实就是带参数访问一下各应用程序的uc.php,用户感觉不到这个过程。
4.各应用程序靠api下的uc.php来接收uc server发来的消息,并对uc server言听计从,让干什么就干什么。现在,收到让xxx用户在你的程序中登录的命令,马上执行。
并写本应用程序的session,并且使用p3p, 写入相同域或不同域的cookies. 用户感觉不到这个过程。
5.最后所有和uc整合的程序,xxx均登录成功。用户从www.test.com/bbs登录后, 跳到www.test.com/news同样显示登录。因为bbs 和news系统在后台均已登录。
6.应用程序与uc server的会话结束。
得益于uc设计的精巧过程,整个过程,用户完全感觉不到ucenter的存在.这是整合程序历史上的创新。
以下为其中的一个例子:
Supesite的uc_client和ucenter登录通信过程
1、登录入口Index.php?action-login
- //系统频道
- if($_SGET['action'] != 'index') {
- if(emptyempty($channels['menus'][$_SGET['action']]['upnameid']) && $channels['menus'][$_SGET['action']]['upnameid'] != 'news') {
- $scriptfile = S_ROOT.'./'.$_SGET['action'].'.php';
- } else {
- $scriptfile = S_ROOT.'./news.php';
- }
- //echo $scriptfile;
- if(file_exists($scriptfile)) {
- include_once($scriptfile);
- exit();
- }
- }
登录控制器:Login.php
登录视图:Site_login.html.php
提交登录action:batch.login.php?action=login
2、登录处理地址batch.login.php?action=login
include_once(S_ROOT.'./uc_client/client.php');
登录操作及其中涉及到的一些函数:
$password = $_POST['password'];
$username = $_POST['username'];
去ucenter进行远程登录验证
$ucresult = uc_user_login($username, $password, $loginfield == 'uid');
如果登录成功,则查本地用户信息,如果有更新本地信息,如果没有插入新的用户数据保持与ucenter进行同步,然后同步其他子系统登录信息:
- $msg = $lang['login_succeed'].uc_user_synlogin($members['uid']);
- function uc_user_synlogin($uid) {
- $uid = intval($uid);
- $return = uc_api_post('user', 'synlogin', array('uid'=>$uid));
- return $return;
- }
- function uc_api_post($module, $action, $arg = array()) {
- $s = $sep = '';
- foreach($arg as $k => $v) {
- $k = urlencode($k);
- if(is_array($v)) {
- $s2 = $sep2 = '';
- foreach($v as $k2 => $v2) {
- $k2 = urlencode($k2);
- $s2 .= "$sep2{$k}[$k2]=".urlencode(uc_stripslashes($v2));
- $sep2 = '&';
- }
- $s .= $sep.$s2;
- } else {
- $s .= "$sep$k=".urlencode(uc_stripslashes($v));
- }
- $sep = '&';
- }
- $postdata = uc_api_requestdata($module, $action, $s);
- return uc_fopen2(UC_API.'/index.php', 500000, $postdata, '', TRUE, UC_IP, 20);
- }
- function uc_api_requestdata($module, $action, $arg='', $extra='') {
- $input = uc_api_input($arg);
- $post = "m=$module&a=$action&inajax=2&release=".UC_CLIENT_RELEASE."&input=$input&appid=".UC_APPID.$extra;
- return $post;
- }
- function uc_api_url($module, $action, $arg='', $extra='') {
- $url = UC_API.'/index.php?'.uc_api_requestdata($module, $action, $arg, $extra);
- return $url;
- }
- function uc_api_input($data) {
- $s = urlencode(uc_authcode($data.'&agent='.md5($_SERVER['HTTP_USER_AGENT'])."&time=".time(), 'ENCODE', UC_KEY));
- return $s;
- }
- function uc_fopen2($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE) {
- $__times__ = isset($_GET['__times__']) ? intval($_GET['__times__']) + 1 : 1;
- if($__times__ > 2) {
- return '';
- }
- $url .= (strpos($url, '?') === FALSE ? '?' : '&')."__times__=$__times__";
- return uc_fopen($url, $limit, $post, $cookie, $bysocket, $ip, $timeout, $block);
- }
- function uc_fopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE) {
- $return = '';
- $matches = parse_url($url);
- !isset($matches['host']) && $matches['host'] = '';
- !isset($matches['path']) && $matches['path'] = '';
- !isset($matches['query']) && $matches['query'] = '';
- !isset($matches['port']) && $matches['port'] = '';
- $host = $matches['host'];
- $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';
- $port = !emptyempty($matches['port']) ? $matches['port'] : 80;
- if($post) {
- $out = "POST $path HTTP/1.0\r\n";
- $out .= "Accept: **\r\n";
- //$out .= "Referer: $boardurl\r\n";
- $out .= "Accept-Language: zh-cn\r\n";
- $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
- $out .= "Host: $host\r\n";
- $out .= "Connection: Close\r\n";
- $out .= "Cookie: $cookie\r\n\r\n";
- }
- $fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
- if(!$fp) {
- return '';//note $errstr : $errno \r\n
- } else {
- stream_set_blocking($fp, $block);
- stream_set_timeout($fp, $timeout);
- @fwrite($fp, $out);
- $status = stream_get_meta_data($fp);
- if(!$status['timed_out']) {
- while (!feof($fp)) {
- if(($header = @fgets($fp)) && ($header == "\r\n" || $header == "\n")) {
- break;
- }
- }
- $stop = false;
- while(!feof($fp) && !$stop) {
- $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
- $return .= $data;
- if($limit) {
- $limit -= strlen($data);
- $stop = $limit <= 0;
- }
- }
- }
- @fclose($fp);
- return $return;
- }
- }
远程同步登录子系统操作之后:
- //显示信息
- function showmessage($message, $url_forward='', $second=3, $vars=array()) {
- global $_SGLOBAL, $_SCONFIG, $_SC, $channels;
- if(emptyempty($_SGLOBAL['inajax']) && $url_forward && emptyempty($second)) {
- //直接301跳转
- obclean();
- header("HTTP/1.1 301 Moved Permanently");
- header("Location: $url_forward");
- } else {
- if(!defined('IN_SUPESITE_ADMINCP')) {
- $tpl_file = 'showmessage';
- $fullpath = 0;
- include_once(S_ROOT.'./language/message.lang.php');
- if(!emptyempty($mlang[$message])) $message = $mlang[$message];
- } else {
- $tpl_file = 'admin/tpl/showmessage.htm';
- $fullpath = 1;
- include_once(S_ROOT.'./language/admincp_message.lang.php');
- if(!emptyempty($amlang[$message])) $message = $amlang[$message];
- }
- if(isset($_SGLOBAL['mlang'][$message])) $message = $_SGLOBAL['mlang'][$message];
- foreach ($vars as $key => $val) {
- $message = str_replace('{'.$key.'}', $val, $message);
- }
- //显示
- obclean();
- if(!emptyempty($url_forward)) {
- $second = $second * 1000;
- $message .= "<script>setTimeout(\"window.location.href ='$url_forward';\", $second);</script><ajaxok>";
- }
- include template($tpl_file, $fullpath);
- ob_out();
- }
- exit();
- }
Supesite中的Common.php部分解读:
1、define('S_ROOT', dirname(__FILE__).DIRECTORY_SEPARATOR);
dirname(__FILE__)
S_ROOT=E:\mydoc\supesite
2、error_reporting指令确定PHP错误报告敏感度的级别,一共有十三个预定的错误级别,每一个都唯一对应于应用程序或服务器功能。
D_BUG?error_reporting(7):error_reporting(E_ERROR);
1 E_ERROR
2 E_WARNING
4 E_PARSE
8 E_NOTICE
16 E_CORE_ERROR
32 E_CORE_WARNING
3、$_SGLOBAL = $_SBLOCK = $_SCONFIG = $_SHTML = $_DCACHE = $_SGET = array();
4、//基本文件
- if(!@include_once(S_ROOT.'./config.php')) {
- header("Location: install/index.php");//安装
- exit();
- }
- include_once(S_ROOT.'./function/common.func.php');
- @include_once(S_ROOT.'./data/system/config.cache.php');
5、PHP extract() 函数从数组中把变量导入到当前的符号表中。
$_SCONFIG = array_merge($_SSCONFIG, $_SC);//合并配置
extract($_SC);
6、函数:get_magic_quotes_gpc()
取得 PHP 环境变量 magic_quotes_gpc 的值。
语法: long get_magic_quotes_gpc(void);
返回值: 长整数
函数种类: PHP 系统功能
本函数取得 PHP 环境配置的变量 magic_quotes_gpc (GPC, Get/Post/Cookie) 值。返回 0 表示关闭本功能;返回 1 表示本功能打开。当 magic_quotes_gpc 打开时,所有的 ' (单引号), " (双引号), \ (反斜线) and 空字符会自动转为含有反斜线的溢出字符。
7、过滤’单引号
- function saddslashes($string) {
- if(is_array($string)) {
- foreach($string as $key => $val) {
- $string[$key] = saddslashes($val);
- }
- } else {
- $string = addslashes($string);
- }
- return $string;
- }
addslashes()函数的作用是:使用反斜线引用字符串。
8、strlen()函数的作用:取字符串的长度
9、
- foreach($_COOKIE as $key => $val) {
- if(substr($key, 0, $prelength) == $_SC['cookiepre']) {
- $_SCOOKIE[(substr($key, $prelength))] = emptyempty($magic_quote) ? saddslashes($val) : $val;
- }
- }
10、getenv
取得系统的环境变量
语法: string getenv(string varname);
11、php strcasecmp()函数
strcasecmp()函数的作用是:对两个字符串进行比较。
12、preg_match
13、ob_start 打开缓冲区
14、preg_replace执行正则表达式的搜索和替换
Tags: uc_client ucenter 原理
相关文章
- ·ucenter创始人密码如何修改(2013-11-15)
- ·ucenter整合destoon后注册页面不跳转(2013-11-15)
- ·Discuz、UCenter登陆管理后台自动退出的解决方法(2013-11-15)
- ·ThinkPHP3.1.2整合UCenter详解(一)(2013-11-15)
- ·dedecms_ucenter模块管理(2013-11-15)
- ·Centos 6.2安装Ucenter Home (2013-11-15)
- ·ucenter整合,通信失败,调试测试排查方法(2014-01-08)
- ·ucenter 添加新应用(自己的网站和ucenter通信)(2014-01-10)
- ·Discuz、UCenter登陆管理后台自动退出的解决方法(2014-01-10)
- ·整合UCenter开启同步登陆后以前系统帐号为什么不能登录(2014-01-10)
- ·ThinkPHP3.1.2整合UCenter详解(2014-01-10)
- ·dedecms_ucenter模块管理(2014-01-10)
- ·整合Ucenter后登陆变慢! 修改变快的几种方法.(2014-01-10)
- ·ucenter 添加新应用(2014-04-21)
- ·UCenter和最土团购系统的整合教程(2014-04-21)
- ·ucenter整合destoon后注册页面不跳转(2014-04-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)