Explorar el Código

静态化页面等等

XMTT %!s(int64=7) %!d(string=hace) años
padre
commit
d84ee6a58d

+ 5 - 0
src/main/java/com/ekexiu/console/system/dao/ArticleDao.java

@ -83,4 +83,9 @@ public interface ArticleDao {
83 83
    @Nullable
84 84
    @QueryOne
85 85
    ArticleInfo queryInfo(Connection con, String articleId) throws SQLException;
86
87
    @Nullable
88
    @QueryOne
89
    @Exclude("articleContent")
90
    ArticleInfo queryBaseInfo(Connection con, String articleId) throws SQLException;
86 91
}

+ 59 - 0
src/main/java/com/ekexiu/console/system/dao/ImageDao.java

@ -0,0 +1,59 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Image;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.operator.*;
8
import org.jfw.apt.orm.annotation.dao.param.Set;
9
10
import java.sql.Connection;
11
import java.sql.SQLException;
12
import java.util.List;
13
14
/**
15
 * Created by TT on 2017/11/6.
16
 */
17
@DAO
18
public interface ImageDao {
19
    @Insert
20
    int insert(Connection con, Image image) throws SQLException;
21
22
    @UpdateWith
23
    @From(Image.class)
24
    int updateSort(Connection con, String imageId, @Set int sort) throws SQLException;
25
26
    @UpdateWith
27
    @From(Image.class)
28
    int updateAllSort(Connection con, String resourceId, @Set int sort) throws SQLException;
29
30
    @SelectOne
31
    @Nullable
32
    Image query(Connection con, String imageId) throws SQLException;
33
34
    @SelectList
35
    List<Image> query(Connection con) throws SQLException;
36
37
    @SelectOne
38
    @Nullable
39
    Image queryOne(Connection con, String resourceId) throws SQLException;
40
41
    @SelectList
42
    List<Image> queryRes(Connection con, String resourceId) throws SQLException;
43
44
    @DeleteWith
45
    @From(Image.class)
46
    int deleteId(Connection con, String imageId) throws SQLException;
47
48
    @DeleteWith
49
    @From(Image.class)
50
    int deleteSrc(Connection con, String imageSrc) throws SQLException;
51
52
    @DeleteWith
53
    @From(Image.class)
54
    int deleteRes(Connection con, String resourceId) throws SQLException;
55
56
    @DeleteWith
57
    @From(Image.class)
58
    int deleteBySort(Connection con, String resourceId, int sort) throws SQLException;
59
}

+ 5 - 0
src/main/java/com/ekexiu/console/system/dao/ResourceDao.java

@ -14,6 +14,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.*;
14 14
import org.jfw.apt.orm.annotation.dao.param.*;
15 15
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
16 16
import org.jfw.util.PageQueryResult;
17
import org.jfw.util.exception.JfwBaseException;
17 18
18 19
import java.sql.Connection;
19 20
import java.sql.SQLException;
@ -24,6 +25,10 @@ import java.sql.SQLException;
24 25
@DAO
25 26
public interface ResourceDao {
26 27
28
    @Update
29
    @Exclude("modifyTime")
30
    int update(Connection con, Resource resource) throws SQLException,JfwBaseException;
31
27 32
    @Nullable
28 33
    @SelectOne
29 34
    Resource query(Connection con, String resourceId) throws SQLException;

+ 65 - 0
src/main/java/com/ekexiu/console/system/po/Image.java

@ -0,0 +1,65 @@
1
package com.ekexiu.console.system.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8
9
/**
10
 * Created by TT on 2017/11/6.
11
 */
12
@PrimaryKey("imageId")
13
@Table
14
public class Image {
15
    private String imageId;
16
    private int sort;
17
    private String imageSrc;
18
    private String resourceId;
19
    private Resource resource;
20
21
    public Resource getResource() {
22
        return resource;
23
    }
24
25
    public void setResource(Resource resource) {
26
        this.resource = resource;
27
    }
28
29
    @Column(DE.id_32)
30
    public String getImageId() {
31
        return imageId;
32
    }
33
34
    public void setImageId(String imageId) {
35
        this.imageId = imageId;
36
    }
37
38
    @Column(handlerClass = IntHandler.class, dbType = "INTEGER", nullable = true)
39
    public int getSort() {
40
        return sort;
41
    }
42
43
    public void setSort(int sort) {
44
        this.sort = sort;
45
    }
46
47
    @Column(DE.string_de)
48
    public String getImageSrc() {
49
        return imageSrc;
50
    }
51
52
    public void setImageSrc(String imageSrc) {
53
        this.imageSrc = imageSrc;
54
    }
55
56
    @Column(DE.id_32)
57
    public String getResourceId() {
58
        return resourceId;
59
    }
60
61
    public void setResourceId(String resourceId) {
62
        this.resourceId = resourceId;
63
    }
64
65
}

+ 47 - 13
src/main/java/com/ekexiu/console/system/po/Resource.java

@ -11,6 +11,8 @@ import org.jfw.apt.orm.core.defaultImpl.LongHandler;
11 11
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
12 12
import org.jfw.apt.orm.core.enums.DE;
13 13
14
import java.util.List;
15
14 16
/**
15 17
 * Created by TT on 2017/7/26.
16 18
 */
@ -43,6 +45,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
43 45
    private String status;
44 46
    private String descp;
45 47
    private String professorId;
48
    private List<Image> images;
46 49
    /**
47 50
     * 资源所属(个人/机构)
48 51
     */
@ -75,10 +78,19 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
75 78
    private long shareId;
76 79
    private long sortNum;
77 80
81
    public List<Image> getImages() {
82
        return images;
83
    }
84
85
    public void setImages(List<Image> images) {
86
        this.images = images;
87
    }
88
78 89
    @Column(DE.id_32)
79 90
    public String getResourceId() {
80 91
        return resourceId;
81 92
    }
93
82 94
    public void setResourceId(String resourceId) {
83 95
        this.resourceId = resourceId;
84 96
    }
@ -87,22 +99,25 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
87 99
    public String getResourceName() {
88 100
        return resourceName;
89 101
    }
102
90 103
    public void setResourceName(String resourceName) {
91 104
        this.resourceName = resourceName;
92 105
    }
93 106
94
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
107
    @Column(handlerClass = StringHandler.class, dbType = "TEXT", insertable = true, nullable = true, renewable = true, queryable = true)
95 108
    public String getSubject() {
96 109
        return subject;
97 110
    }
111
98 112
    public void setSubject(String subject) {
99 113
        this.subject = subject;
100 114
    }
101 115
102
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
116
    @Column(handlerClass = StringHandler.class, dbType = "TEXT", insertable = true, nullable = true, renewable = true, queryable = true)
103 117
    public String getIndustry() {
104 118
        return industry;
105 119
    }
120
106 121
    public void setIndustry(String industry) {
107 122
        this.industry = industry;
108 123
    }
@ -111,6 +126,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
111 126
    public String getSupportedServices() {
112 127
        return supportedServices;
113 128
    }
129
114 130
    public void setSupportedServices(String supportedServices) {
115 131
        this.supportedServices = supportedServices;
116 132
    }
@ -119,6 +135,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
119 135
    public String getOrgName() {
120 136
        return orgName;
121 137
    }
138
122 139
    public void setOrgName(String orgName) {
123 140
        this.orgName = orgName;
124 141
    }
@ -127,38 +144,43 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
127 144
    public String getSpec() {
128 145
        return spec;
129 146
    }
147
130 148
    public void setSpec(String spec) {
131 149
        this.spec = spec;
132 150
    }
133 151
134
    @Column(handlerClass=FixLenStringHandler.class,dbType="TEXT",nullable=true)
152
    @Column(handlerClass = FixLenStringHandler.class, dbType = "TEXT", nullable = true)
135 153
    public String getParameter() {
136 154
        return parameter;
137 155
    }
156
138 157
    public void setParameter(String parameter) {
139 158
        this.parameter = parameter;
140 159
    }
141 160
142
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(1)",nullable=true,renewable=false)
161
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(1)", nullable = true, renewable = false)
143 162
    public String getStatus() {
144 163
        return status;
145 164
    }
165
146 166
    public void setStatus(String status) {
147 167
        this.status = status;
148 168
    }
149 169
150
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
170
    @Column(handlerClass = StringHandler.class, dbType = "TEXT", insertable = true, nullable = true, renewable = true, queryable = true)
151 171
    public String getDescp() {
152 172
        return descp;
153 173
    }
174
154 175
    public void setDescp(String descp) {
155 176
        this.descp = descp;
156 177
    }
157 178
158
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
179
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(32)", nullable = true, renewable = false)
159 180
    public String getProfessorId() {
160 181
        return professorId;
161 182
    }
183
162 184
    public void setProfessorId(String professorId) {
163 185
        this.professorId = professorId;
164 186
    }
@ -167,6 +189,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
167 189
    public String getAscription() {
168 190
        return ascription;
169 191
    }
192
170 193
    public void setAscription(String ascription) {
171 194
        this.ascription = ascription;
172 195
    }
@ -174,6 +197,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
174 197
    public String getCreateTime() {
175 198
        return createTime;
176 199
    }
200
177 201
    public void setCreateTime(String createTime) {
178 202
        this.createTime = createTime;
179 203
    }
@ -181,6 +205,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
181 205
    public String getModifyTime() {
182 206
        return modifyTime;
183 207
    }
208
184 209
    public void setModifyTime(String modifyTime) {
185 210
        this.modifyTime = modifyTime;
186 211
    }
@ -189,66 +214,75 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported {
189 214
    public String getHopePayMethod() {
190 215
        return hopePayMethod;
191 216
    }
217
192 218
    public void setHopePayMethod(String hopePayMethod) {
193 219
        this.hopePayMethod = hopePayMethod;
194 220
    }
195 221
196
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
222
    @Column(handlerClass = StringHandler.class, dbType = "TEXT", insertable = true, nullable = true, renewable = true, queryable = true)
197 223
    public String getCooperationNotes() {
198 224
        return cooperationNotes;
199 225
    }
226
200 227
    public void setCooperationNotes(String cooperationNotes) {
201 228
        this.cooperationNotes = cooperationNotes;
202 229
    }
203 230
204
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(14)",nullable=true,renewable=false)
231
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", nullable = true, renewable = false)
205 232
    public String getPublishTime() {
206 233
        return publishTime;
207 234
    }
235
208 236
    public void setPublishTime(String publishTime) {
209 237
        this.publishTime = publishTime;
210 238
    }
211 239
212
    @Column(handlerClass=IntHandler.class,dbType="INTEGER",nullable=true,renewable=false)
240
    @Column(handlerClass = IntHandler.class, dbType = "INTEGER", nullable = true, renewable = false)
213 241
    public int getPageViews() {
214 242
        return pageViews;
215 243
    }
244
216 245
    public void setPageViews(int pageViews) {
217 246
        this.pageViews = pageViews;
218 247
    }
219 248
220
    @Column(handlerClass=StringHandler.class,nullable=true,renewable=false)
249
    @Column(handlerClass = StringHandler.class, nullable = true, renewable = false)
221 250
    public String getComp() {
222 251
        return comp;
223 252
    }
253
224 254
    public void setComp(String comp) {
225 255
        this.comp = comp;
226 256
    }
227 257
228
    @Column(handlerClass=FixLenStringHandler.class,nullable=true,renewable=false)
258
    @Column(handlerClass = FixLenStringHandler.class, nullable = true, renewable = false)
229 259
    public String getResourceType() {
230 260
        return resourceType;
231 261
    }
262
232 263
    public void setResourceType(String resourceType) {
233 264
        this.resourceType = resourceType;
234 265
    }
235 266
236
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
267
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(32)", nullable = true, renewable = false)
237 268
    public String getOrgId() {
238 269
        return orgId;
239 270
    }
271
240 272
    public void setOrgId(String orgId) {
241 273
        this.orgId = orgId;
242 274
    }
275
243 276
    @Column(DE.bigSerial)
244 277
    public long getShareId() {
245 278
        return shareId;
246 279
    }
280
247 281
    public void setShareId(long shareId) {
248 282
        this.shareId = shareId;
249 283
    }
250 284
251
    @Column(handlerClass=LongHandler.class,dbType="BIGINT",fixSqlValueWithInsert="0",insertable=true,renewable=false,nullable=false,queryable=true)
285
    @Column(handlerClass = LongHandler.class, dbType = "BIGINT", fixSqlValueWithInsert = "0", insertable = true, renewable = false, nullable = false, queryable = true)
252 286
    public long getSortNum() {
253 287
        return sortNum;
254 288
    }

+ 50 - 14
src/main/java/com/ekexiu/console/system/service/ArticleService.java

@ -224,9 +224,21 @@ public class ArticleService {
224 224
225 225
    @Post
226 226
    @Path("/deleteArticle")
227
    public void deleteArticle(@JdbcConn(true) Connection con,String[] articleIds) throws SQLException{
227
    public void deleteArticle(@JdbcConn(false) Connection con,String[] articleIds) throws SQLException, JfwBaseException, IOException {
228 228
        //修改文章状态为删除
229
        this.articleDao.updateStatus(con, articleIds, "3");
229
        try{
230
            this.articleDao.updateStatus(con, articleIds, "3");
231
            con.commit();
232
            for (String articleId : articleIds) {
233
                http.post("http://192.168.3.233:81/ajax/cms", "t=Article" + "&k=" + articleId, null);
234
            }
235
        } catch (JfwBaseException | IOException e) {
236
            try {
237
                con.rollback();
238
            } catch (SQLException e1) {
239
            }
240
            throw e;
241
        }
230 242
    }
231 243
232 244
    @Post
@ -260,6 +272,13 @@ public class ArticleService {
260 272
        return this.articleDao.queryInfo(con, id);
261 273
    }
262 274
275
276
    @Get
277
    @Path("/base")
278
    public Article queryBaseInfo(@JdbcConn Connection con, String id) throws SQLException {
279
        return this.articleDao.queryBaseInfo(con, id);
280
    }
281
263 282
    @Get
264 283
    @Path("/qaHotKey")
265 284
    public List<DataDictCode> queryHotKey(String key) throws JfwBaseException, IOException {
@ -285,20 +304,32 @@ public class ArticleService {
285 304
286 305
    @Post
287 306
    @Path("/save")
288
    public String saveArticle(@JdbcConn(true) Connection con, Article article)throws SQLException,IOException,JfwBaseException {
289
        if (article.getArticleId().trim().length() == 32) {
290
            if (article.getArticleImg() != null) {
291
                this.saveArtImg(article.getArticleImg(), article.getArticleId());
292
                article.setArticleImg(this.createDate() + "/" + article.getArticleId() + "." + JPG);
307
    public String saveArticle(@JdbcConn(false) Connection con, Article article)throws SQLException,IOException,JfwBaseException {
308
        String articleId = null;
309
        try {
310
            if (article.getArticleId().trim().length() == 32) {
311
                articleId = article.getArticleId().trim();
312
                if (article.getArticleImg() != null) {
313
                    this.saveArtImg(article.getArticleImg(), articleId);
314
                    article.setArticleImg(this.createDate() + "/" + articleId + "." + JPG);
315
                }
316
                Article article1 = this.articleDao.query(con, articleId);
317
                article.setColNum(article1.getColNum());
318
                this.articleDao.update(con, article);
319
                this.keyWordService.refreshArticle(con, articleId, article.getSubject());
320
            } else {
321
                throw new JfwBaseException(-2, "bad parameter:articleId");
293 322
            }
294
            Article article1 = this.articleDao.query(con, article.getArticleId());
295
            article.setColNum(article1.getColNum());
296
            this.articleDao.update(con, article);
297
            this.keyWordService.refreshArticle(con, article.getArticleId(), article.getSubject());
298
            return article.getArticleId();
299
        }else {
300
            throw new JfwBaseException(-2, "bad parameter:articleId");
323
            con.commit();
324
            http.post("http://192.168.3.233:81/ajax/cms", "t=Article" + "&k=" + articleId, null);
325
        } catch (SQLException | IOException | JfwBaseException e) {
326
            try {
327
                con.rollback();
328
            } catch (SQLException ee) {
329
            }
330
            throw e;
301 331
        }
332
        return articleId;
302 333
    }
303 334
304 335
    @Post
@ -403,4 +434,9 @@ public class ArticleService {
403 434
404 435
    }
405 436
437
    public static void main(String[] args)throws Exception {
438
        String articleId = "B0334EAE5D734A258F97E185CDD7E160";
439
        http.post("http://192.168.3.233:81/ajax/cms", "t=Article" + "&k=" + articleId, null);
440
    }
441
406 442
}

+ 90 - 0
src/main/java/com/ekexiu/console/system/service/ImageService.java

@ -1,13 +1,20 @@
1 1
package com.ekexiu.console.system.service;
2 2
3 3
import com.ekexiu.console.service.Upload;
4
import com.ekexiu.console.system.dao.ImageDao;
5
import com.ekexiu.console.system.po.Image;
6
import org.jfw.apt.annotation.Autowrie;
4 7
import org.jfw.apt.web.annotation.Path;
5 8
import org.jfw.apt.web.annotation.operate.Post;
9
import org.jfw.apt.web.annotation.param.JdbcConn;
6 10
import org.jfw.util.JpgUtil;
7 11
import org.jfw.util.StringUtil;
12
import org.jfw.util.exception.JfwBaseException;
8 13
import org.jfw.util.io.IoUtil;
9 14
10 15
import java.io.*;
16
import java.sql.Connection;
17
import java.sql.SQLException;
11 18
import java.text.SimpleDateFormat;
12 19
import java.util.Date;
13 20
@ -22,6 +29,7 @@ public class ImageService extends Upload {
22 29
    private File bannerPath;
23 30
    private File researchResultPath;
24 31
    private String dateFormat = "yyyyMMdd";
32
    private String dateFormatRes = "yyyyMM";
25 33
    private static final String JPG = "jpg";
26 34
    private int largeHeadPhotoWidth = 200;
27 35
    private int largeHeadPhotoHeight = 200;
@ -40,6 +48,12 @@ public class ImageService extends Upload {
40 48
    private byte[] dol;
41 49
    private byte[] dsl;
42 50
51
    private int resImageMaxLen = 240;
52
    private File resourceDataPath;
53
54
    @Autowrie
55
    private ImageDao imageDao;
56
43 57
    public File getDefaultHeadPhoto() {
44 58
        return defaultHeadPhoto;
45 59
    }
@ -98,6 +112,30 @@ public class ImageService extends Upload {
98 112
        this.researchResultPath = researchResultPath;
99 113
    }
100 114
115
    public ImageDao getImageDao() {
116
        return imageDao;
117
    }
118
119
    public void setImageDao(ImageDao imageDao) {
120
        this.imageDao = imageDao;
121
    }
122
123
    public int getResImageMaxLen() {
124
        return resImageMaxLen;
125
    }
126
127
    public void setResImageMaxLen(int resImageMaxLen) {
128
        this.resImageMaxLen = resImageMaxLen;
129
    }
130
131
    public File getResourceDataPath() {
132
        return resourceDataPath;
133
    }
134
135
    public void setResourceDataPath(File resourceDataPath) {
136
        this.resourceDataPath = resourceDataPath;
137
    }
138
101 139
    public void saveOrgLogo(String id, String fn) throws IOException {
102 140
        InputStream in = new FileInputStream(new File(this.tmpPath, fn));
103 141
        try {
@ -169,6 +207,12 @@ public class ImageService extends Upload {
169 207
        return date;
170 208
    }
171 209
210
    private String createResDate() {
211
        SimpleDateFormat df = new SimpleDateFormat(this.dateFormatRes);
212
        String date = df.format(new Date());
213
        return date;
214
    }
215
172 216
    @Path("/researchResult")
173 217
    @Post
174 218
    public String researchResult(String fn)throws IOException {
@ -188,4 +232,50 @@ public class ImageService extends Upload {
188 232
        return this.createDate() + "/" + id + "." + JPG;
189 233
    }
190 234
235
    private byte[] readTmpFile(String fn) throws JfwBaseException {
236
        File file = new File(this.tmpPath, fn);
237
        if (!file.exists())
238
            throw new JfwBaseException(90, "resource image not exists");
239
        try {
240
            InputStream in = new FileInputStream(file);
241
            ByteArrayOutputStream out = new ByteArrayOutputStream();
242
            IoUtil.copy(in, out, true, true);
243
            return out.toByteArray();
244
        } catch (IOException e) {
245
            throw new JfwBaseException(91, "read temp resource image error", e);
246
        }
247
    }
248
249
    private byte[] resImage(byte[] src, int maxLen) throws IOException {
250
        ByteArrayInputStream in = new ByteArrayInputStream(src);
251
        ByteArrayOutputStream out = new ByteArrayOutputStream();
252
        JpgUtil.scalingZoom(in, out, maxLen);
253
        out.flush();
254
        return out.toByteArray();
255
    }
256
257
    public void saveFns(@JdbcConn(true) Connection con, String resourceId, String[] fns, int sort)
258
            throws SQLException, IOException, JfwBaseException {
259
        for (int i = 0; i < fns.length; i++) {
260
            byte[] src = this.readTmpFile(fns[i]);
261
            src = JpgUtil.read(src);
262
            byte[] shareResImage = this.resImage(src, this.resImageMaxLen);
263
            File dateFile = new File(this.resourceDataPath + "/" + this.createResDate());
264
            if (!dateFile.exists()) {
265
                // 创建日期目录
266
                dateFile.mkdirs();
267
            }
268
            Image image = new Image();
269
            String imageId = StringUtil.buildUUID();
270
            image.setImageId(imageId);
271
            IoUtil.saveStream(new FileOutputStream(new File(dateFile, imageId + "." + JPG)), src, true);
272
            IoUtil.saveStream(new FileOutputStream(new File(dateFile, imageId + "_s." + JPG)), shareResImage, true);
273
            image.setSort(sort+i+1);
274
            String imageSrc = this.createResDate() + "/" + imageId + "." + JPG;
275
            image.setImageSrc(imageSrc);
276
            image.setResourceId(resourceId);
277
            this.imageDao.insert(con, image);
278
        }
279
    }
280
191 281
}

+ 14 - 0
src/main/java/com/ekexiu/console/system/service/OrgService.java

@ -8,6 +8,8 @@ import com.ekexiu.console.system.po.OrgUser;
8 8
import com.ekexiu.console.system.po.Organization;
9 9
import com.ekexiu.console.system.pojo.OrganizationInfo;
10 10
import com.ekexiu.console.system.vo.ConsoleAuthUser;
11
import com.ekexiu.console.util.HttpService;
12
import com.ekexiu.console.util.HttpServiceImpl;
11 13
import org.jfw.apt.annotation.Autowrie;
12 14
import org.jfw.apt.annotation.DefaultValue;
13 15
import org.jfw.apt.annotation.Nullable;
@ -26,8 +28,10 @@ import org.jfw.util.exception.JfwBaseException;
26 28
import org.jfw.util.jdbc.JdbcUtil;
27 29
import org.jfw.util.jdbc.PreparedStatementConfig;
28 30
import org.jfw.util.jdbc.ResultSetExtractor;
31
import org.jfw.util.reflect.TypeReference;
29 32

30 33
import java.io.IOException;
34
import java.net.URLEncoder;
31 35
import java.sql.Connection;
32 36
import java.sql.PreparedStatement;
33 37
import java.sql.ResultSet;
@ -38,6 +42,8 @@ import java.util.Objects;
38 42

39 43
@Path("/sys/org")
40 44
public class OrgService {
45
    private static HttpService http = new HttpServiceImpl();
46

41 47
    private String defaultOrgType;
42 48

43 49
    /**
@ -344,6 +350,14 @@ public class OrgService {
344 350
        return ret;
345 351
    }
346 352

353
    @Get
354
    @Path("/querylimit")
355
    public List<Object> queryLimit(@JdbcConn Connection con, @Nullable String name, @DefaultValue("3") int rows) throws SQLException, JfwBaseException, IOException {
356
        List<Object> org = http.get("http://www.ekexiu.com/ajax/org/querylimit?name=" + URLEncoder.encode(name, "UTF-8")+"&rows="+rows, new TypeReference<List<Object>>() {
357
        }.getType());
358
        return org;
359
    }
360

347 361
    public String createOrganization(Connection con, String orgName) throws SQLException, IOException {
348 362
        String id = StringUtil.buildUUID();
349 363
        Organization org = new Organization();

+ 68 - 1
src/main/java/com/ekexiu/console/system/service/ResourceService.java

@ -1,6 +1,8 @@
1 1
package com.ekexiu.console.system.service;
2 2
3
import com.ekexiu.console.system.dao.ImageDao;
3 4
import com.ekexiu.console.system.dao.ResourceDao;
5
import com.ekexiu.console.system.po.Image;
4 6
import com.ekexiu.console.system.po.Resource;
5 7
import com.ekexiu.console.system.pojo.ResourceInfo;
6 8
import org.jfw.apt.annotation.Autowrie;
@ -12,9 +14,12 @@ import org.jfw.apt.web.annotation.operate.Post;
12 14
import org.jfw.apt.web.annotation.param.JdbcConn;
13 15
import org.jfw.apt.web.annotation.param.PathVar;
14 16
import org.jfw.util.PageQueryResult;
17
import org.jfw.util.exception.JfwBaseException;
15 18
19
import java.io.IOException;
16 20
import java.sql.Connection;
17 21
import java.sql.SQLException;
22
import java.util.List;
18 23
19 24
/**
20 25
 * Created by TT on 2017/8/9.
@ -25,6 +30,10 @@ public class ResourceService {
25 30
    private ResourceDao resourceDao;
26 31
    @Autowrie
27 32
    private KeyWordService keyWordService;
33
    @Autowrie
34
    private ImageDao imageDao;
35
    @Autowrie
36
    private ImageService imageService;
28 37
29 38
    public ResourceDao getResourceDao() {
30 39
        return resourceDao;
@ -42,6 +51,22 @@ public class ResourceService {
42 51
        this.keyWordService = keyWordService;
43 52
    }
44 53
54
    public ImageDao getImageDao() {
55
        return imageDao;
56
    }
57
58
    public void setImageDao(ImageDao imageDao) {
59
        this.imageDao = imageDao;
60
    }
61
62
    public ImageService getImageService() {
63
        return imageService;
64
    }
65
66
    public void setImageService(ImageService imageService) {
67
        this.imageService = imageService;
68
    }
69
45 70
    @Path("/pq")
46 71
    @Get
47 72
    public PageQueryResult<ResourceInfo> pageQueryResult(@JdbcConn Connection con, @Nullable String resourceName, @Nullable String name, int orderBy, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException {
@ -81,8 +106,50 @@ public class ResourceService {
81 106
82 107
    @Post
83 108
    @Path("/subject")
84
    public void updateSubject(@JdbcConn(true) Connection con,String resourceId,@Nullable String subject) throws SQLException {
109
    public void updateSubject(@JdbcConn(true) Connection con, String resourceId, @Nullable String subject) throws SQLException {
85 110
        this.resourceDao.updateSubject(con, resourceId, subject);
86 111
        this.keyWordService.refreshResource(con, resourceId, subject);
87 112
    }
113
114
    @Get
115
    @Path("/queryOne")
116
    public Resource queryOne(@JdbcConn Connection con, String resourceId)throws SQLException {
117
        Resource resource = this.resourceDao.query(con, resourceId);
118
        if (resource != null) {
119
            resource.setImages(this.imageDao.queryRes(con,resourceId));
120
        }
121
        return resource;
122
    }
123
124
    @Post
125
    @Path("/save")
126
    public String save(@JdbcConn(true) Connection con, Resource resource, @Nullable String[] fns, @Nullable String[] imageIds)throws JfwBaseException,SQLException,IOException {
127
        if (resource.getResourceId().trim().length() == 32) {
128
            int imageLength = 0;
129
            if (imageIds != null) {
130
                imageLength = imageIds.length;
131
                List<Image> images = this.imageDao.queryRes(con, resource.getResourceId());
132
                this.imageDao.updateAllSort(con, resource.getResourceId(), 0);
133
                for (int i=0;i<imageLength;i++) {
134
                    for (Image image : images) {
135
                        if (image.getImageId().equals(imageIds[i])) {
136
                            this.imageDao.updateSort(con, image.getImageId(), i + 1);
137
                        }
138
                    }
139
                }
140
                this.imageDao.deleteBySort(con, resource.getResourceId(), 0);
141
            }
142
            if (fns != null) {
143
                if (imageIds == null) {
144
                    this.imageDao.deleteRes(con, resource.getResourceId());
145
                }
146
                this.imageService.saveFns(con,resource.getResourceId(),fns,imageLength);
147
            }
148
                this.resourceDao.update(con, resource);
149
            this.keyWordService.refreshResource(con,resource.getResourceId(),resource.getSubject());
150
            return resource.getResourceId();
151
        }else {
152
            throw new JfwBaseException(-1, "bad parameter:resourceId");
153
        }
154
    }
88 155
}

+ 8 - 0
src/main/java/com/ekexiu/console/system/service/StatistService.java

@ -9,6 +9,7 @@ import org.jfw.apt.web.annotation.param.JdbcConn;
9 9
import org.jfw.util.jdbc.JdbcUtil;
10 10
11 11
import java.sql.Connection;
12
import java.sql.DriverManager;
12 13
import java.sql.SQLException;
13 14
import java.util.HashMap;
14 15
import java.util.List;
@ -48,4 +49,11 @@ public class StatistService {
48 49
        return this.userCountDao.query(con);
49 50
    }
50 51
52
    @Get
53
    @Path("/total")
54
    public List<Map<String, Object>> total()throws SQLException {
55
        Connection con = DriverManager.getConnection("jdbc:postgresql://121.42.53.174:5432/ekexiu_log", "postgres", "postgres");
56
        return JdbcUtil.queryMaps(con, "SELECT day,sum(pv)as pv,source FROM article_day GROUP BY day,source ORDER BY day DESC");
57
    }
58
51 59
}

+ 7 - 1
src/main/resources/project-dev.properties

@ -101,8 +101,14 @@ com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.Fi
101 101
#com_ekexiu_console_system_service_ArticleService.tmpPath::java.io.File=D:/tmp/data/images/tmp
102 102
com_ekexiu_console_system_service_ArticleService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
103 103

104
#文章图片保存目录
104 105
#com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=D:/tmp/data/article
105 106
com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexiu/webdata/data/article
106 107

108
#科研成果图片保存目录
107 109
#com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=D:/tmp/data/images/researchResult
108
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
110
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
111

112
#资源图片保存目录
113
#com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=D:/tmp/data/resource
114
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource

+ 6 - 1
src/main/resources/project-test-dev.properties

@ -81,6 +81,11 @@ com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.Fi
81 81
82 82
com_ekexiu_console_system_service_ArticleService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
83 83
84
#文章图片保存目录
84 85
com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexiu/webdata/data/article
85 86
86
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
87
#科研成果图片保存目录
88
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
89
90
#资源图片保存目录
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource

+ 6 - 1
src/main/resources/project-test.properties

@ -81,6 +81,11 @@ com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.Fi
81 81
82 82
com_ekexiu_console_system_service_ArticleService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
83 83
84
#文章图片保存目录
84 85
com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexiu/webdata/data/article
85 86
86
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
87
#科研成果图片保存目录
88
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
89
90
#资源图片保存目录
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource

+ 6 - 1
src/main/resources/project.properties

@ -83,6 +83,11 @@ com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.Fi
83 83
84 84
com_ekexiu_console_system_service_ArticleService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
85 85
86
#文章图片保存目录
86 87
com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexiu/webdata/data/article
87 88
88
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
89
#科研成果图片保存目录
90
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
91
92
#资源图片保存目录
93
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource