CProfile.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fec\helpers;
  10. use Yii;
  11. ##########################################################################################################################################
  12. # CProfile 是一个中央调度器,各个模块的访问,必须通过CProfile的 fetch方法
  13. # 1.模块如果想要被其他模块调用,必须把模块注册到CProfile,才可以使用CProfile调用
  14. # 1.1模块注册内容:模块路径,模块api url根路径,token(选填,如果不填写,使用默认的token)。
  15. # 1.2模块内容存放:模块的内容存放到数据库中,然后缓存到redis,要保证所有的节点都可以连接到数据库和redis,
  16. # 如果没有配置mysql和redis,就无法调取模块注册的信息。
  17. # 2.在调取远程模块之前,进行数据的格式验证,和模块注册信息的验证,验证失败会抛出HTTP Exception
  18. # 3.如果是本地访问的模块,调度器会访问模块对应的o文件下的方法。
  19. # 4.如果访问的远程的模块,调度器会访问远程模块对应的o文件夹下面的方法。
  20. # 4.1数据传递:1.函数方法参数,2.$_GET,$_POST 里面的参数,3.cookie的值。
  21. # 4.2安全验证:模块的token和传递的token进行验证,验证通过,返回数据。
  22. # 4.3在远程模块访问前,先提交session,保证session提交到redis,进而,远程模块可以访问到最新的session
  23. # 同样,远程模块在返回数据之前,也会提交session到redis中。
  24. # 5.CProfile 是单例模式,只能通过 CProfile::getInstance() 实例化
  25. # 6.返回数据验证:远程返回的是json格式数据,验证数据的正确性,如果是错误信息,则会抛出HTTP Exception
  26. # 7.JSON格式转换成数组格式
  27. # 8. 注意:current_remote_function_param_array 不要在post 和get 中出现,这个参数被用来传递函数方法的参数。
  28. ##########################################################################################################################################
  29. /**
  30. * @author Terry Zhao <2358269014@qq.com>
  31. * @since 1.0
  32. */
  33. class CProfile
  34. {
  35. //保存类实例的静态成员变量
  36. private static $_instance;
  37. //private标记的构造方法
  38. private function __construct(){
  39. //echo 'This is a Constructed method;';
  40. }
  41. //创建__clone方法防止对象被复制克隆
  42. public function __clone(){
  43. //trigger_error('Clone is not allow!',E_USER_ERROR);
  44. }
  45. //单例方法,用于访问实例的公共的静态方法
  46. public static function getInstance(){
  47. if(!(self::$_instance instanceof self)){
  48. self::$_instance = new self;
  49. }
  50. return self::$_instance;
  51. }
  52. # 模块间访问数据的调度方法。
  53. # $obj_data = [ $modules,$file,$function,$is_remote='false' ];
  54. # $req_data = []; 传递的参数
  55. public function fetch($obj_data,$req_data=[]){
  56. if(!is_array($req_data)){
  57. $message = 'fetch($obj_data,$req_data),$req_data must be array';
  58. throw new \yii\web\HttpException(406,$message);
  59. }
  60. $data = '';
  61. if(is_array($obj_data) && !empty($obj_data)){
  62. $modules = $obj_data[0];
  63. $file = $obj_data[1];
  64. $function = $obj_data[2];
  65. $is_remote = $obj_data[3];
  66. if($modules && $file && $function){
  67. $ModulesConfig = $this->getModulesConfig();
  68. if(isset($ModulesConfig[$modules])){
  69. $moduleConfig = $ModulesConfig[$modules];
  70. if($is_remote){
  71. # 远程
  72. # 把模块更新的session更新到redis上面,以供其他模块使用
  73. session_commit();
  74. $data = $this->getRemotePostData($modules,$moduleConfig,$file,$function,$req_data,$timeout = 20);
  75. }else{
  76. # 本地
  77. $file = str_replace("/","\\",$file);
  78. $function_exec = $moduleConfig['moduleDir']."\\o\\".$file;
  79. $function_exec .= "::".$function;
  80. $data = \call_user_func_array($function_exec,$req_data);
  81. $data = CFunc::object_to_array(json_decode($data));
  82. }
  83. }else{
  84. $message = "!! Get Data From Local Module <$modules> Error: Module is not config in Profile.";
  85. throw new \yii\web\HttpException(406,$message);
  86. }
  87. }else{
  88. $message = "!! Get Data From Local Module <$modules> Error: param:obj_data must is array and count >= 3.";
  89. throw new \yii\web\HttpException(406,$message);
  90. }
  91. }else{
  92. $message = "!! Get Data From Local Module <$modules> Error: param:obj_data is Empty OR is not Array .";
  93. throw new \yii\web\HttpException(406,$message);
  94. }
  95. return $data;
  96. }
  97. public function getDefaultToken(){
  98. return CConfig::getDefaultModuleToken();
  99. }
  100. # 得到模块的配置
  101. public function getModulesConfig(){
  102. return [
  103. 'DMenu' => [
  104. 'moduleDir' =>'\appdata\code\Blog\DMenu',
  105. 'apiurl' =>'http://120.24.37.249:100/dmenu',
  106. 'token' =>'xxxxxx',
  107. ],
  108. ];
  109. }
  110. # 得到远程模块信息
  111. public function getRemotePostData($modules,$moduleConfig,$file,$function,$req_data=[],$timeout = 20){
  112. $file = str_replace("\\","/",$file);
  113. $url = strtolower(trim($moduleConfig['apiurl']."/".$file."/".$function));
  114. $module_token = $moduleConfig['token'] ? $moduleConfig['token'] : $this->getDefaultToken();
  115. $post = Yii::$app->request->post() ;
  116. $get = Yii::$app->request->get();
  117. $post = $post ? $post : [];
  118. $get = $get ? $get : [];
  119. $data = array_merge($get , $post);
  120. $data['module_token'] = $module_token;
  121. $data['current_remote_function_param_array'] = serialize($req_data);
  122. $arr = '';
  123. //var_dump($_COOKIE);exit;
  124. if(is_array($_COOKIE)){
  125. foreach($_COOKIE as $k=>$v){
  126. $arr[] = $k."=".urlencode($v);
  127. }
  128. }
  129. if(!empty($arr)){
  130. $strCookie = implode(";",$arr);
  131. }
  132. //对空格进行转义
  133. $url = str_replace(' ','+',$url);
  134. $ch = curl_init();
  135. //设置选项,包括URL
  136. curl_setopt($ch, CURLOPT_URL, "$url");
  137. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  138. curl_setopt($ch, CURLOPT_HEADER, 0);
  139. if($strCookie){
  140. curl_setopt( $ch, CURLOPT_COOKIE, $strCookie );
  141. }
  142. curl_setopt($ch,CURLOPT_TIMEOUT,$timeout);
  143. // POST数据
  144. curl_setopt($ch, CURLOPT_POST, 1);
  145. // 把post的变量加上
  146. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  147. //执行并获取url地址的内容
  148. $output = curl_exec($ch);
  149. //echo $output ;
  150. //释放curl句柄
  151. curl_close($ch);
  152. //var_dump($data['current_remote_function_param_array']);
  153. //var_dump($_COOKIE);
  154. //echo "<br/><br/>";
  155. //var_dump($output);
  156. //echo $url;
  157. //exit;
  158. //$return['ack'] = true;
  159. //$return['ack_description'] = "success";
  160. //$return['content'] = $data;
  161. $return = CFunc::object_to_array(json_decode($output));
  162. if($return['ack']){
  163. return $return['content'];
  164. }else{
  165. $message = "Get Data From Remote Module <$modules> Error:".$return['ack_description'].".";
  166. throw new \yii\web\HttpException(400,$message);
  167. }
  168. //return $output;
  169. }
  170. }