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
|
package com.juick.service;
import com.juick.Attachment;
import com.juick.Message;
import com.juick.Photo;
import org.springframework.util.StringUtils;
public class MockImagesService implements ImagesService {
@Override
public void setAttachmentMetadata(String imgDir, String baseUrl, Message msg) throws Exception {
if (!StringUtils.isEmpty(msg.getAttachmentType())) {
Photo photo = new Photo();
if (msg.getRid()> 0) {
photo.setSmall(String.format("%sphotos-512/%d-%d.%s", baseUrl, msg.getMid(), msg.getRid(), msg.getAttachmentType()));
photo.setMedium(String.format("%sphotos-1024/%d-%d.%s", baseUrl, msg.getMid(), msg.getRid(), msg.getAttachmentType()));
photo.setThumbnail(String.format("%sps/%d-%d.%s", baseUrl, msg.getMid(), msg.getRid(), msg.getAttachmentType()));
} else {
photo.setSmall(String.format("%sphotos-512/%d.%s", baseUrl, msg.getMid(), msg.getAttachmentType()));
photo.setMedium(String.format("%sphotos-1024/%d.%s", baseUrl, msg.getMid(), msg.getAttachmentType()));
photo.setThumbnail(String.format("%sps/%d.%s", baseUrl, msg.getMid(), msg.getAttachmentType()));
}
msg.setPhoto(photo);
StringBuilder builder = new StringBuilder();
builder.append(baseUrl);
builder.append(msg.getAttachmentType().equals("mp4") ? "video" : "p");
builder.append("/").append(msg.getMid());
if (msg.getRid() > 0) {
builder.append("-").append(msg.getRid());
}
builder.append(".").append(msg.getAttachmentType());
String originalUrl = builder.toString();
Attachment original = new Attachment();
original.setUrl(originalUrl);
original.setHeight(2048);
original.setWidth(2048);
Attachment medium = new Attachment();
medium.setUrl(photo.getMedium());
medium.setWidth(1024);
medium.setHeight(1024);
original.setMedium(medium);
Attachment small = new Attachment();
small.setUrl(photo.getSmall());
small.setWidth(1024);
small.setHeight(1024);
original.setSmall(small);
Attachment thumb = new Attachment();
thumb.setUrl(photo.getMedium());
thumb.setWidth(1024);
thumb.setHeight(1024);
original.setThumbnail(thumb);
msg.setAttachment(original);
}
}
}
|