HeadController.java
15.8 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
package com.fh.controller.system.head;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.apache.shiro.session.Session;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import com.fh.controller.base.BaseController;
import com.fh.service.system.appuser.AppuserManager;
import com.fh.service.system.fhsms.FhsmsManager;
import com.fh.service.system.user.UserManager;
import com.fh.service.system.userphoto.UserPhotoManager;
import com.fh.util.AppUtil;
import com.fh.util.Const;
import com.fh.util.Jurisdiction;
import com.fh.util.PageData;
import com.fh.util.SmsUtil;
import com.fh.util.Tools;
import com.fh.util.Watermark;
import com.fh.util.mail.SimpleMailSender;
/**
* 类名称:HeadController
* 修改时间:2015年11月23日
* @version
*/
@Controller
@RequestMapping(value="/head")
public class HeadController extends BaseController {
@Resource(name="userService")
private UserManager userService;
@Resource(name="appuserService")
private AppuserManager appuserService;
@Resource(name="fhsmsService")
private FhsmsManager fhsmsService;
@Resource(name="userphotoService")
private UserPhotoManager userphotoService;
/**去编辑头像页面
* @return
* @throws Exception
*/
@RequestMapping(value="/editPhoto")
public ModelAndView editPhoto() throws Exception{
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
mv.setViewName("system/userphoto/userphoto_edit");
mv.addObject("pd", pd);
return mv;
}
/**获取头部信息
* @return
*/
@RequestMapping(value="/getList")
@ResponseBody
public Object getList() {
PageData pd = new PageData();
Map<String,Object> map = new HashMap<String,Object>();
try {
pd = this.getPageData();
List<PageData> pdList = new ArrayList<PageData>();
Session session = Jurisdiction.getSession();
PageData pds = new PageData();
pds = (PageData)session.getAttribute(Const.SESSION_userpds);
if(null == pds){
pd.put("USERNAME", Jurisdiction.getUsername());//当前登录者用户名
pds = userService.findByUsername(pd);
session.setAttribute(Const.SESSION_userpds, pds);
}
pdList.add(pds);
map.put("list", pdList);
PageData pdPhoto = userphotoService.findById(pds);
map.put("userPhoto", null == pdPhoto?"static/ace/avatars/user.jpg":pdPhoto.getString("PHOTO2"));//用户头像
map.put("fhsmsCount", fhsmsService.findFhsmsCount(Jurisdiction.getUsername()).get("fhsmsCount").toString());//站内信未读总数
String strWEBSOCKET = Tools.readTxtFile(Const.WEBSOCKET);//读取WEBSOCKET配置
if(null != strWEBSOCKET && !"".equals(strWEBSOCKET)){
String strIW[] = strWEBSOCKET.split(",fh,");
if(strIW.length == 7){
map.put("wimadress", strIW[0]+":"+strIW[1]); //即时聊天服务器IP和端口
map.put("oladress", strIW[2]+":"+strIW[3]); //在线管理和站内信服务器IP和端口
map.put("FHsmsSound", strIW[4]); //站内信提示音效配置
}
}
} catch (Exception e) {
logger.error(e.toString(), e);
} finally {
logAfter(logger);
}
return AppUtil.returnObject(pd, map);
}
/**获取站内信未读总数
* @return
*/
@RequestMapping(value="/getFhsmsCount")
@ResponseBody
public Object getFhsmsCount() {
PageData pd = new PageData();
Map<String,Object> map = new HashMap<String,Object>();
try {
map.put("fhsmsCount", fhsmsService.findFhsmsCount(Jurisdiction.getUsername()).get("fhsmsCount").toString());//站内信未读总数
} catch (Exception e) {
logger.error(e.toString(), e);
} finally {
logAfter(logger);
}
return AppUtil.returnObject(pd, map);
}
/**去发送邮箱页面
* @return
* @throws Exception
*/
@RequestMapping(value="/editEmail")
public ModelAndView editEmail() throws Exception{
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
mv.setViewName("system/head/edit_email");
mv.addObject("pd", pd);
return mv;
}
/**去发送短信页面
* @return
* @throws Exception
*/
@RequestMapping(value="/goSendSms")
public ModelAndView goSendSms() throws Exception{
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
mv.setViewName("system/head/send_sms");
mv.addObject("pd", pd);
return mv;
}
/**发送短信
* @return
*/
@RequestMapping(value="/sendSms")
@ResponseBody
public Object sendSms(){
PageData pd = new PageData();
pd = this.getPageData();
Map<String,Object> map = new HashMap<String,Object>();
String msg = "ok"; //发送状态
int count = 0; //统计发送成功条数
int zcount = 0; //理论条数
List<PageData> pdList = new ArrayList<PageData>();
String PHONEs = pd.getString("PHONE"); //对方邮箱
String CONTENT = pd.getString("CONTENT"); //内容
String isAll = pd.getString("isAll"); //是否发送给全体成员 yes or no
String TYPE = pd.getString("TYPE"); //类型 1:短信接口1 2:短信接口2
String fmsg = pd.getString("fmsg"); //判断是系统用户还是会员 "appuser"为会员用户
if("yes".endsWith(isAll)){
try {
List<PageData> userList = new ArrayList<PageData>();
userList = "appuser".equals(fmsg) ? appuserService.listAllUser(pd):userService.listAllUser(pd);
zcount = userList.size();
try {
for(int i=0;i<userList.size();i++){
if(Tools.checkMobileNumber(userList.get(i).getString("PHONE"))){ //手机号格式不对就跳过
if("1".equals(TYPE)){
SmsUtil.sendSms1(userList.get(i).getString("PHONE"), CONTENT); //调用发短信函数1
}else{
SmsUtil.sendSms2(userList.get(i).getString("PHONE"), CONTENT); //调用发短信函数2
}
count++;
}else{
continue;
}
}
msg = "ok";
} catch (Exception e) {
msg = "error";
}
} catch (Exception e) {
msg = "error";
}
}else{
PHONEs = PHONEs.replaceAll(";", ";");
PHONEs = PHONEs.replaceAll(" ", "");
String[] arrTITLE = PHONEs.split(";");
zcount = arrTITLE.length;
try {
for(int i=0;i<arrTITLE.length;i++){
if(Tools.checkMobileNumber(arrTITLE[i])){ //手机号式不对就跳过
if("1".equals(TYPE)){
SmsUtil.sendSms1(arrTITLE[i], CONTENT); //调用发短信函数1
}else{
SmsUtil.sendSms2(arrTITLE[i], CONTENT); //调用发短信函数2
}
count++;
}else{
continue;
}
}
msg = "ok";
} catch (Exception e) {
msg = "error";
}
}
pd.put("msg", msg);
pd.put("count", count); //成功数
pd.put("ecount", zcount-count); //失败数
pdList.add(pd);
map.put("list", pdList);
return AppUtil.returnObject(pd, map);
}
/**去发送电子邮件页面
* @return
* @throws Exception
*/
@RequestMapping(value="/goSendEmail")
public ModelAndView goSendEmail() throws Exception{
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
mv.setViewName("system/head/send_email");
mv.addObject("pd", pd);
return mv;
}
/**发送电子邮件
* @return
*/
@RequestMapping(value="/sendEmail")
@ResponseBody
public Object sendEmail(){
PageData pd = new PageData();
pd = this.getPageData();
Map<String,Object> map = new HashMap<String,Object>();
String msg = "ok"; //发送状态
int count = 0; //统计发送成功条数
int zcount = 0; //理论条数
String strEMAIL = Tools.readTxtFile(Const.EMAIL); //读取邮件配置
List<PageData> pdList = new ArrayList<PageData>();
String toEMAIL = pd.getString("EMAIL"); //对方邮箱
String TITLE = pd.getString("TITLE"); //标题
String CONTENT = pd.getString("CONTENT"); //内容
String TYPE = pd.getString("TYPE"); //类型
String isAll = pd.getString("isAll"); //是否发送给全体成员 yes or no
String fmsg = pd.getString("fmsg"); //判断是系统用户还是会员 "appuser"为会员用户
if(null != strEMAIL && !"".equals(strEMAIL)){
String strEM[] = strEMAIL.split(",fh,");
if(strEM.length == 4){
if("yes".endsWith(isAll)){
try {
List<PageData> userList = new ArrayList<PageData>();
userList = "appuser".equals(fmsg) ? appuserService.listAllUser(pd):userService.listAllUser(pd);
zcount = userList.size();
try {
for(int i=0;i<userList.size();i++){
if(Tools.checkEmail(userList.get(i).getString("EMAIL"))){ //邮箱格式不对就跳过
SimpleMailSender.sendEmail(strEM[0], strEM[1], strEM[2], strEM[3], userList.get(i).getString("EMAIL"), TITLE, CONTENT, TYPE);//调用发送邮件函数
count++;
}else{
continue;
}
}
msg = "ok";
} catch (Exception e) {
msg = "error";
}
} catch (Exception e) {
msg = "error";
}
}else{
toEMAIL = toEMAIL.replaceAll(";", ";");
toEMAIL = toEMAIL.replaceAll(" ", "");
String[] arrTITLE = toEMAIL.split(";");
zcount = arrTITLE.length;
try {
for(int i=0;i<arrTITLE.length;i++){
if(Tools.checkEmail(arrTITLE[i])){ //邮箱格式不对就跳过
SimpleMailSender.sendEmail(strEM[0], strEM[1], strEM[2], strEM[3], arrTITLE[i], TITLE, CONTENT, TYPE);//调用发送邮件函数
count++;
}else{
continue;
}
}
msg = "ok";
} catch (Exception e) {
msg = "error";
}
}
}else{
msg = "error";
}
}else{
msg = "error";
}
pd.put("msg", msg);
pd.put("count", count); //成功数
pd.put("ecount", zcount-count); //失败数
pdList.add(pd);
map.put("list", pdList);
return AppUtil.returnObject(pd, map);
}
/**去系统设置页面
* @return
* @throws Exception
*/
@RequestMapping(value="/goSystem")
public ModelAndView goEditEmail() throws Exception{
if(!"admin".equals(Jurisdiction.getUsername())){return null;} //非admin用户不能修改
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
pd.put("YSYNAME", Tools.readTxtFile(Const.SYSNAME)); //读取系统名称
pd.put("COUNTPAGE", Tools.readTxtFile(Const.PAGE)); //读取每页条数
String strEMAIL = Tools.readTxtFile(Const.EMAIL); //读取邮件配置
String strSMS1 = Tools.readTxtFile(Const.SMS1); //读取短信1配置
String strSMS2 = Tools.readTxtFile(Const.SMS2); //读取短信2配置
String strFWATERM = Tools.readTxtFile(Const.FWATERM); //读取文字水印配置
String strIWATERM = Tools.readTxtFile(Const.IWATERM); //读取图片水印配置
pd.put("Token", Tools.readTxtFile(Const.WEIXIN)); //读取微信配置
String strWEBSOCKET = Tools.readTxtFile(Const.WEBSOCKET);//读取WEBSOCKET配置
String strLOGINEDIT = Tools.readTxtFile(Const.LOGINEDIT);//读取登录页面配置
if(null != strEMAIL && !"".equals(strEMAIL)){
String strEM[] = strEMAIL.split(",fh,");
if(strEM.length == 4){
pd.put("SMTP", strEM[0]);
pd.put("PORT", strEM[1]);
pd.put("EMAIL", strEM[2]);
pd.put("PAW", strEM[3]);
}
}
if(null != strSMS1 && !"".equals(strSMS1)){
String strS1[] = strSMS1.split(",fh,");
if(strS1.length == 2){
pd.put("SMSU1", strS1[0]);
pd.put("SMSPAW1", strS1[1]);
}
}
if(null != strSMS2 && !"".equals(strSMS2)){
String strS2[] = strSMS2.split(",fh,");
if(strS2.length == 2){
pd.put("SMSU2", strS2[0]);
pd.put("SMSPAW2", strS2[1]);
}
}
if(null != strFWATERM && !"".equals(strFWATERM)){
String strFW[] = strFWATERM.split(",fh,");
if(strFW.length == 5){
pd.put("isCheck1", strFW[0]);
pd.put("fcontent", strFW[1]);
pd.put("fontSize", strFW[2]);
pd.put("fontX", strFW[3]);
pd.put("fontY", strFW[4]);
}
}
if(null != strIWATERM && !"".equals(strIWATERM)){
String strIW[] = strIWATERM.split(",fh,");
if(strIW.length == 4){
pd.put("isCheck2", strIW[0]);
pd.put("imgUrl", strIW[1]);
pd.put("imgX", strIW[2]);
pd.put("imgY", strIW[3]);
}
}
if(null != strWEBSOCKET && !"".equals(strWEBSOCKET)){
String strIW[] = strWEBSOCKET.split(",fh,");
if(strIW.length == 7){
pd.put("WIMIP", strIW[0]);
pd.put("WIMPORT", strIW[1]);
pd.put("OLIP", strIW[2]);
pd.put("OLPORT", strIW[3]);
pd.put("FHsmsSound", strIW[4]);
pd.put("VIDEOIP", strIW[5]);
pd.put("VIDEOPORT", strIW[6]);
}
}
if(null != strLOGINEDIT && !"".equals(strLOGINEDIT)){
String strLo[] = strLOGINEDIT.split(",fh,");
if(strLo.length == 2){
pd.put("isZhuce", strLo[0]);
pd.put("isMusic", strLo[1]);
}
}
mv.setViewName("system/head/sys_edit");
mv.addObject("pd", pd);
return mv;
}
/**保存系统设置1
* @return
* @throws Exception
*/
@RequestMapping(value="/saveSys")
public ModelAndView saveSys() throws Exception{
if(!"admin".equals(Jurisdiction.getUsername())){return null;} //非admin用户不能修改
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
Tools.writeFile(Const.SYSNAME,pd.getString("YSYNAME")); //写入系统名称
Tools.writeFile(Const.PAGE,pd.getString("COUNTPAGE")); //写入每页条数
Tools.writeFile(Const.EMAIL,pd.getString("SMTP")+",fh,"+pd.getString("PORT")+",fh,"+pd.getString("EMAIL")+",fh,"+pd.getString("PAW")); //写入邮件服务器配置
Tools.writeFile(Const.SMS1,pd.getString("SMSU1")+",fh,"+pd.getString("SMSPAW1")); //写入短信1配置
Tools.writeFile(Const.SMS2,pd.getString("SMSU2")+",fh,"+pd.getString("SMSPAW2")); //写入短信2配置
mv.addObject("msg","OK");
mv.setViewName("save_result");
return mv;
}
/**保存系统设置2
* @return
* @throws Exception
*/
@RequestMapping(value="/saveSys2")
public ModelAndView saveSys2() throws Exception{
if(!"admin".equals(Jurisdiction.getUsername())){return null;} //非admin用户不能修改
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
Tools.writeFile(Const.FWATERM,pd.getString("isCheck1")+",fh,"+pd.getString("fcontent")+",fh,"+pd.getString("fontSize")+",fh,"+pd.getString("fontX")+",fh,"+pd.getString("fontY")); //文字水印配置
Tools.writeFile(Const.IWATERM,pd.getString("isCheck2")+",fh,"+pd.getString("imgUrl")+",fh,"+pd.getString("imgX")+",fh,"+pd.getString("imgY")); //图片水印配置
Watermark.fushValue();
mv.addObject("msg","OK");
mv.setViewName("save_result");
return mv;
}
/**保存系统设置3
* @return
* @throws Exception
*/
@RequestMapping(value="/saveSys3")
public ModelAndView saveSys3() throws Exception{
if(!"admin".equals(Jurisdiction.getUsername())){return null;} //非admin用户不能修改
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
String winStr = pd.getString("WIMIP")+",fh,"+pd.getString("WIMPORT")+",fh,"; //即时通讯配置
String olStr = pd.getString("OLIP")+",fh,"+pd.getString("OLPORT")+",fh,"+pd.getString("FHsmsSound")+",fh,"; //站内信配置
String videoStr = pd.getString("VIDEOIP")+",fh,"+pd.getString("VIDEOPORT"); //视频弹幕配置
Tools.writeFile(Const.WEBSOCKET,winStr+olStr+videoStr); //websocket配置
mv.addObject("msg","OK");
mv.setViewName("save_result");
return mv;
}
/**保存系统设置4
* @return
* @throws Exception
*/
@RequestMapping(value="/saveSys4")
public ModelAndView saveSys4() throws Exception{
if(!"admin".equals(Jurisdiction.getUsername())){return null;} //非admin用户不能修改
ModelAndView mv = this.getModelAndView();
PageData pd = new PageData();
pd = this.getPageData();
Tools.writeFile(Const.WEIXIN,pd.getString("Token")); //写入微信配置
Tools.writeFile(Const.LOGINEDIT,pd.getString("isZhuce")+",fh,"+pd.getString("isMusic")); //登录页面配置
mv.addObject("msg","OK");
mv.setViewName("save_result");
return mv;
}
}
// F-H Q 3-135-9679-0