四川大学评教开源代码

注:本文已发布超过一年,请注意您所使用工具的相关版本是否适用

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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
require "login.php";
require "QueryList.class.php";
class evaluate{

private $_listUrl="http://202.115.47.141/jxpgXsAction.do?oper=listWj&page=";//评教列表页面
private $_formUrl="http://202.115.47.141/jxpgXsAction.do?oper=wjShow&";//评教表单页面
private $_postUrl="http://202.115.47.141/jxpgXsAction.do?oper=wjpg&";//评教提交地址
private $_yjpj;
private $_successNo=0;//成功次数
private $_failNo=0;//失败次数

public function __construct($name,$pass)
{

$this->_yjpj=new login($name,$pass);
}

/**
* 获取评教列表并且返回列表信息以及页码
* @author mohuishou<1@lailin.xyz>
* @return mixed
* $list=[
* 'info'=>[
* [
* 'param'=>[
* 0 => '0000000038',
* 1 => '19873162',
* 2 => '高苹',
* 3 => '学评教',
* 4 => '马克思主义基本原理概论',
* 5 => '107021030',
* ],
* 'status'=>0
* ],
* ......
* ],
* 'page'=>[
* [
* 'page'=>'2'
* ]
* ]
* ];
*/

public function getList()
{
/*--------------获取第一页的评教列表页面---------------*/
$listContent=$this->_yjpj->show($this->_listUrl."1");

/*------------获取评教分页信息--------------*/
$pageReg=[
'page'=>['script:eq(3)','html','',function($page){
$pattern="/document\.all\.pageNo\.value>(.)/";
preg_match($pattern,$page,$no);
if($no[1]){
return $no[1];
}

}]
];
$page=QueryList::Query($listContent,$pageReg);
$page=$page->jsonArr[0]['page'];

/*---------获取评教老师信息--------------*/
$listReg=[
'param'=>['img','name','',function($a){
if($a){
return explode('#@',$a);
}
}],
'status'=>['img','onclick','',function($a){
if(trim($a)=="evaluation(this)"){
return 1;
}else{
return 0;
}
}],
];

/*[优化]:减少重复抓取列表页,大大提高效率*/
$c=QueryList::Query($listContent,$listReg);
$list[]=$c->jsonArr;
if($page>1){
for($i=2;$i<=$page;$i++){
$listContent=$this->_yjpj->show($this->_listUrl.$i);
$c=QueryList::Query($listContent,$listReg);
$list[]=$c->jsonArr;
}
}

return $list;//获取到的评教信息
}

public function getPostInfo($list)
{
// print_r($list);
foreach($list as $listVal){
// print_r($listVal);
foreach($listVal as $listkey => $listValue){
if($listValue['status']==1){
// print_r($listValue);
$param=[
'wjbm'=>$listValue['param'][0],
'bpr'=>$listValue['param'][1],
'pgnr'=>$listValue['param'][5],
];
$param=http_build_query($param);
$url=$this->_formUrl.$param;
// echo $url;
$formContent=$this->_yjpj->show($url);
// print_r($formContent);
$res=QueryList::Query($formContent,['name'=>['[value=10_1]','name']]);

/*--------------将获取的表单信息整理成为即将post的参数-------------*/
foreach($res->jsonArr as $postKey => $postValue){
$postParam[$postValue['name']]="10_1";
}
$postParam['wjbm']=$listValue['param'][0];
$postParam['bpr']=$listValue['param'][1];
$postParam['pgnr']=$listValue['param'][5];
$postParam['zgpj']="very good teacher!!";
$this->post($postParam);
// return 0;
}
}
}
}

public function post($param){
$param=http_build_query($param);
$url=$this->_postUrl.$param;
// echo $url;
$evalContent=$this->_yjpj->show($url);

/*--------------------抓取提交之后的数据查看是否成功提交--------------------*/
$res=QueryList::Query($evalContent,['info'=>['script','html','',function($a){
$pattern='/alert\("(.+)"\)/';
preg_match_all($pattern,$a,$res);
$success='评估成功!';
if($res[1][0]==$success){
$a=[
'message'=>$res[1][0],
'status'=>1
];
}else{
$a=[
'message'=>$res[1][0],
'status'=>0
];
}
return $a;
}]]);
$status=$res->jsonArr[0]['info']['status'];
if($status==1){
$this->_successNo+=1;
}else{
$this->_failNo+=1;
}
// print_r($res->jsonArr);
}




public function action()
{
$this->getPostInfo($this->getList());
$this->count();
return ['success'=>$this->_successNo,'fail'=>$this->_failNo];
//return '评教成功,成功:'.$this->_successNo.'位,'.'失败:'.$this->_failNo."位";
}
}

关注我获取更新

wechat
知乎
github

猜你喜欢


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议,转载请注明出处,禁止全文转载