Onlinereg.class.php
6.37 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
/**
* 在线登记
*/
class Controller_Onlinereg extends Controller_Abstract
{
/**
* 首页
*/
public function indexAction()
{
}
/**
* 赞助商
*/
public function sponsorAction()
{
$this->_view['type'] = Facade_Onlinereg::TYPE_ONLINE_SPONSOR;
$this->setSession('yohood', 'type', Facade_Onlinereg::TYPE_ONLINE_SPONSOR);
}
/**
* 新闻稿
*/
public function mediaAction()
{
$this->_view['type'] = Facade_Onlinereg::TYPE_ONLINE_MEDIA;
$this->setSession('yohood', 'type', Facade_Onlinereg::TYPE_ONLINE_MEDIA);
}
/**
* 参展商
*/
public function exhibitorAction()
{
$this->_view['type'] = Facade_Onlinereg::TYPE_ONLINE_EXHIBITOR;
$this->setSession('yohood', 'type', Facade_Onlinereg::TYPE_ONLINE_EXHIBITOR);
}
/**
* 设置商家信息
*
* @return json
*/
public function setsellerAction()
{
$code = $this->_request->post('code');
$type = intval($this->_request->post('type'));
$status = false;
if($this->validate($code) && $type == $this->getSession('yohood','type'))
{
//清除验证码
Util_Captcha::setToSession('passport_istration', '');
$name = $this->_request->post('name');
$is_enter_yohobuy = $this->_request->post('is_enter_yohobuy');
$profession = $this->_request->post('profession');
$sex = $this->_request->post('sex');
$introduction = $this->_request->post('introduction');
$brand_reg_type = $this->_request->post('brand_reg_type');
$product_type = $this->_request->post('product_type');
$country = $this->_request->post('country');
$city = $this->_request->post('city');
$company = $this->_request->post('company');
$place = $this->_request->post('place');
$contact = $this->_request->post('contact');
$telphone = $this->_request->post('telphone');
$mobile = $this->_request->post('mobile');
$relation = $this->_request->post('relation');
$email = $this->_request->post('email');
$is_3c = $this->_request->post('is_3c');
$website = $this->_request->post('website');
$zipcode = $this->_request->post('zipcode');
$files = trim($this->_request->post('files'));
if($type == Facade_Onlinereg::TYPE_ONLINE_SPONSOR)//赞助商
{
if(empty($name) || empty($contact)|| empty($place))
{
return $this->returnJson(false, 403,'','数据不能为空');
}
}
else if($type == Facade_Onlinereg::TYPE_ONLINE_EXHIBITOR)//参展商
{
if(empty($name) || empty($contact) || empty($telphone))
{
return $this->returnJson(false, 403,'','数据不能为空');
}
}
else if($type == Facade_Onlinereg::TYPE_ONLINE_MEDIA)//新闻稿
{
if(empty($name) || empty($mobile) || empty($place))
{
return $this->returnJson(false, 403,'','数据不能为空');
}
}
if(in_array($type, array(Facade_Onlinereg::TYPE_ONLINE_SPONSOR, Facade_Onlinereg::TYPE_ONLINE_EXHIBITOR)))
{
$files = array($files);
}
else
{
$files = '';
}
$status = Facade_Onlinereg::setSellerInfo($name, $type, 0, $is_enter_yohobuy,
$product_type, $country, $company, $contact, $telphone, $email, 0, $website, 0, $place, $files);
}
else
{
return $this->returnJson(false, 403,'','验证失败');
}
if($status)
{
return $this->returnJson(true, 200);
}
else
{
return $this->returnJson(false, 403);
}
}
/**
* 上传文件
*/
public function uploadfileAction()
{
if ($this->_request->isPost())
{
$type = intval($this->_request->post('type'));
$path = Lib_Images::saveImage($_FILES, 'onlinereg');
if(!empty($path))
{
return $this->returnJson(true, 200, $path);
}
else
{
return $this->returnJson(false, 403,'','上传失败');
}
}
else
{
return $this->returnJson(false, 403,'','失败');
}
}
/**
* 验证码
*/
public function imagesAction()
{
$g = trim($this->_request->query('g'));
$len = intval($this->_request->query('len', 4));
$namespace = !empty($g) ? $g : 'passport_istration';
$imgCode = new Util_Captcha();
$imgCode->setWidth(150)->setHeight(50)->setWordLen($len)->generate($namespace);
}
/**
* 参展商下载
*/
public function exhibitordownAction()
{
$list = Facade_Onlinereg::getDownloadListByType(Facade_Onlinereg::TYPE_ONLINE_DOWNLOAD_EXHIBITOR, 0, 100);
$this->_view['list'] = $list;
}
/**
* 新闻稿下载
*/
public function mediadownAction()
{
$list = Facade_Onlinereg::getDownloadListByType(Facade_Onlinereg::TYPE_ONLINE_DOWNLOAD_MEDIA, 0, 100);
$this->_view['list'] = $list;
}
/**
* 验证code
*
* @return json
*/
public function validatecodeAction()
{
$code = $this->_request->query('code');
$status = false;
if(!empty($code))
{
$status = $this->validate($code);
}
if($status)
{
return $this->returnJson(true, 200);
}
else
{
return $this->returnJson(false, 403);
}
}
/**
* 验证code
*
* @param string $code
* @return boolean
*/
private function validate($code)
{
$code = strtolower($code);
$namespace ='passport_istration';
$sessionCode = strtolower(Util_Captcha::getFromSession($namespace));
if($code == $sessionCode)
{
return true;
}
else
{
return true;
}
}
}