admin
2021-04-02 2a593ddac16e06f1ff55edca22ea568f07b068ba
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
package com.yeshi.buwan.controller.admin.api;
 
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import javax.annotation.Resource;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
 
import com.yeshi.buwan.util.SystemUtil;
import net.sf.json.JSONObject;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
 
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.yeshi.buwan.domain.system.DetailSystem;
import com.yeshi.buwan.domain.SuperVideoType;
import com.yeshi.buwan.domain.VideoType;
import com.yeshi.buwan.service.imp.ClassService;
import com.yeshi.buwan.service.imp.SystemService;
import com.yeshi.buwan.util.Constant;
import com.yeshi.buwan.util.StringUtil;
import com.yeshi.buwan.web.tag.PageEntity;
 
@Controller
@RequestMapping("admin/new/api/videoType")
public class VideoTypeAdminController {
 
    @Resource
    private ClassService classService;
 
    @Resource
    private SystemService systemService;
 
    private static final String IMGPATH = "/upload/class";
 
    @RequestMapping("videoTypeList")
    public void videoTypeList(int pageIndex, int detailsystem, int pid, HttpSession session, PrintWriter out) {
        if (pageIndex == 0)
            pageIndex = 1;
 
        List<com.yeshi.buwan.domain.web.VideoTypeAdmin> list = classService.getVideoTypeAdmin(SystemUtil.getAdminSelectedSystemId(session), detailsystem, pid,
                pageIndex);
 
        long count = classService.getVideoTypeAdminCount(detailsystem, pid);
        PageEntity pe = new PageEntity();
        pe.setPageIndex(pageIndex);
        pe.setPageSize(Constant.pageCount);
        Map<String, String> map = new HashMap<String, String>();
        map.put("pid", pid + "");
        map.put("detailsystem", detailsystem + "");
        pe.setParams(map);
        pe.setTotalCount((int) count);
        JSONObject json = new JSONObject();
        json.put("code", "0");
        json.put("pageEntity", pe);
        Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
        json.put("videoTypeAdminList", gson.toJson(list));
        out.print(json);
        return;
    }
 
    @RequestMapping("getAllVideoType")
    public void getAllVideoType(PrintWriter out) {
        List<VideoType> list = classService.getAllVideoType();
        Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
        JSONObject json = new JSONObject();
        json.put("code", "0");
        json.put("list", gson.toJson(list));
        out.print(json);
    }
 
    @RequestMapping("setSuperVideoType")
    public void set(String type, String id, String icon, String detailSystem, PrintWriter out) {
 
        if ("add".equals(type)) {
            SuperVideoType svt = new SuperVideoType();
            svt.setCreatetime(System.currentTimeMillis() + "");
            svt.setDetailSystem(new DetailSystem(detailSystem));
            svt.setPicture(icon.trim());
            svt.setType(new VideoType(Long.parseLong(id)));
            classService.addSuperVideoType(svt);
            out.print("yes");
        } else if ("delete".equals(type)) {
            classService.deleteVideoTypeAdmin(id, detailSystem);
            out.print("yes");
        }
    }
 
    @RequestMapping("getVideoType")
    public void getVideoType(String id, PrintWriter out) {
        VideoType vt = classService.getType(Long.parseLong(id));
        JSONObject json = new JSONObject();
        json.put("code", "0");
        json.put("videoType", vt);
        out.print(json);
        return;
    }
 
    @RequestMapping("updateVideoType")
    public void updateVideoType(String id, String orderby, String name, String beizhu, String iconFile, String iconUrl, String show, String showTitle, PrintWriter out) {
 
        VideoType vt = classService.getType(Long.parseLong(id));
        vt.setOrderby(Integer.parseInt(orderby));
        if (iconFile != null && !"".equals(iconFile.trim())) {// 保存图片
            vt.setIcon(iconFile);
        } else {
            if (!StringUtil.isNullOrEmpty(iconUrl))
                vt.setIcon(iconUrl);
        }
        vt.setName(name);
        vt.setBeizhu(beizhu);
        vt.setShow(show);
        vt.setShowTitle(showTitle);
        classService.updateType(vt);
        out.print("yes");
        return;
    }
 
    @RequestMapping("addVideoType")
    public void addVideoType(String pid, String orderby, String name, String beizhu, String iconFile, String iconUrl, String show, String showTitle, PrintWriter out) {
 
        VideoType vt = new VideoType();
        if (iconFile != null && !"".equals(iconFile.trim())) {// 保存图片
            vt.setIcon(iconFile);
        } else {
            if (!StringUtil.isNullOrEmpty(iconUrl))
                vt.setIcon(iconUrl);
        }
        vt.setName(name);
        vt.setBeizhu(beizhu);
        vt.setOrderby(Integer.parseInt(orderby));
        vt.setShow(show);
        vt.setCreatetime(String.valueOf(new Date().getTime()));
        vt.setShowTitle(showTitle);
        if (!StringUtil.isNullOrEmpty(pid) && !pid.equalsIgnoreCase("0")) {
            vt.setParent(new VideoType(Long.parseLong(pid)));
        }
        System.out.println("vt.getIcon()--" + vt.getIcon());
        classService.createType(vt);
        out.print("yes");
        return;
    }
 
    @RequestMapping(value = "updateVideoTypeFile", method = RequestMethod.POST)
    public void updateVideoTypeFile(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request, PrintWriter out) {
        ServletContext servletContext = request.getSession().getServletContext();
        JSONObject json = new JSONObject();
        if (file != null) {
            String root = servletContext.getRealPath(IMGPATH);
            if (!new File(root).exists()) {
                new File(root).mkdirs();
            }
            File newFile = new File(root + "/" + file.getOriginalFilename());
            //通过CommonsMultipartFile的方法直接写文件(注意这个时候)
            try {
                file.transferTo(newFile);
                json.put("code", "0");
                json.put("path", IMGPATH + "/" + newFile.getName());
            } catch (IllegalStateException e) {
                e.printStackTrace();
                json.put("code", "2");
            } catch (IOException e) {
                e.printStackTrace();
                json.put("code", "2");
            } finally {
                out.print(json);
            }
        } else {
            json.put("code", "1");
            out.print(json);
        }
    }
 
    @RequestMapping("deleteVideoType")
    public void deleteVideoType(String ids, PrintWriter out) {
        String[] idArr = ids.split(",");
        for (String id : idArr) {
            System.out.println("id==" + id);
            if ("310".equals(id)) { //310做特殊处理不删除 20170915
                continue;
            }
            classService.deleteVideoType(id);
        }
        out.print("yes");
        return;
    }
 
}