| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- package com.izouma.nineth.service;
- import com.alibaba.fastjson.JSON;
- import com.izouma.nineth.ApplicationTests;
- import com.izouma.nineth.domain.BlindBoxItem;
- import com.izouma.nineth.domain.Collection;
- import com.izouma.nineth.domain.FileObject;
- import com.izouma.nineth.dto.CreateBlindBox;
- import com.izouma.nineth.enums.CollectionType;
- import com.izouma.nineth.exception.BusinessException;
- import com.izouma.nineth.repo.CollectionRepo;
- import com.izouma.nineth.repo.PrivilegeOptionRepo;
- import com.izouma.nineth.repo.UserRepo;
- import com.izouma.nineth.service.storage.StorageService;
- import com.izouma.nineth.utils.ImageUtils;
- import org.apache.commons.io.FileUtils;
- import org.apache.commons.io.FilenameUtils;
- import org.apache.commons.lang3.RandomStringUtils;
- import org.bytedeco.javacv.FFmpegFrameGrabber;
- import org.bytedeco.javacv.Frame;
- import org.bytedeco.javacv.Java2DFrameConverter;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import javax.imageio.ImageIO;
- import java.awt.image.BufferedImage;
- import java.io.*;
- import java.nio.file.Files;
- import java.text.SimpleDateFormat;
- import java.time.LocalDateTime;
- import java.util.*;
- import java.util.concurrent.atomic.AtomicInteger;
- import java.util.regex.Matcher;
- import java.util.regex.Pattern;
- import java.util.stream.Collectors;
- class CollectionServiceTest extends ApplicationTests {
- @Autowired
- private CollectionService collectionService;
- @Autowired
- private CollectionRepo collectionRepo;
- @Autowired
- private StorageService storageService;
- @Autowired
- private UserRepo userRepo;
- @Autowired
- private PrivilegeOptionRepo privilegeOptionRepo;
- @Autowired
- private SysConfigService sysConfigService;
- @Test
- void toDTO() {
- Collection collection = collectionRepo.findById(951L).get();
- assert collection.getPic() != null;
- }
- @Test
- public void batchUpload() throws IOException {
- AtomicInteger num = new AtomicInteger(1);
- List<BlindBoxItem> items = new ArrayList<>();
- String jsonStr = FileUtils.readFileToString(new File("/Users/qiufangchao/Desktop/mj.json"), "UTF-8");
- Arrays.stream(new File("/Users/qiufangchao/Desktop/majiang").listFiles())
- .filter(f -> !f.getName().contains(".DS_Store"))
- .parallel().forEach(file -> {
- try {
- String name = file.getName();
- Pattern p = Pattern.compile("(\\d+)-(\\d+)");
- Matcher matcher = p.matcher(name);
- matcher.find();
- String findname = matcher.group();
- Collection collection = JSON.parseObject(jsonStr, Collection.class);
- collection.setId(null);
- collection.setName("MAHJONGMAN 麻将侠: 十三幺 " + findname);
- collection.setStock(1);
- collection.setTotal(1);
- collection.setSale(0);
- collection.setMinterId(7150L);
- collection.setOnShelf(false);
- collection.setSalable(false);
- String thumbPath = "https://cdn.raex.vip/thumb_image/mahjongman/" + file.getName()
- .substring(0, file.getName().lastIndexOf(".")) + ".jpg";
- collection.setPic(Collections.singletonList(new FileObject("", "https://cdn.raex.vip/video/mahjongman/" + file.getName(), thumbPath, "video/mp4")));
- collectionRepo.save(collection);
- System.out.println("保存成功" + collection.getId());
- items.add(BlindBoxItem
- .builder()
- .collectionId(collection.getId())
- .total(1)
- .stock(1)
- .rare(false)
- .build());
- } catch (Exception e) {
- }
- });
- }
- @Test
- public void createBlindBox() throws IOException {
- List<Collection> items = collectionRepo.findByNameLike("OASISPUNK.EVO #%").stream().filter(i -> {
- int num = Integer.parseInt(i.getName().substring("OASISPUNK.EVO #".length()));
- return num > 0 && num <= 280;
- }).collect(Collectors.toList());
- String jsonStr = FileUtils.readFileToString(new File("/Users/qiufangchao/Desktop/evo.json"), "UTF-8");
- Collection blindBox = JSON.parseObject(jsonStr, Collection.class);
- blindBox.setType(CollectionType.BLIND_BOX);
- blindBox.setId(null);
- blindBox.setOnShelf(false);
- blindBox.setSalable(false);
- blindBox.setMinterId(7150L);
- blindBox.setNoSoldOut(true);
- blindBox.setName("OASISPUNK.EVO绿洲朋克进化版限定盲盒S3");
- blindBox.setPic(Arrays.asList(new FileObject(null, "https://raex-meta.oss-cn-shenzhen.aliyuncs.com/image/evos3/fm.jpg", null, null)));
- collectionService.createBlindBox(new CreateBlindBox(blindBox, items.stream().map(i -> {
- BlindBoxItem item = new BlindBoxItem();
- item.setCollectionId(i.getId());
- item.setTotal(1);
- return item;
- }).collect(Collectors.toList())));
- }
- public FileObject uploadFile(File file) throws IOException {
- String ext = Optional.of(FilenameUtils.getExtension(file.getName())).orElse("")
- .toLowerCase().replace("jpeg", "jpg");
- String basePath = Optional.ofNullable(Files.probeContentType(file.toPath())).orElse("application")
- .split("/")[0];
- String path = basePath + "/" + new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss").format(new Date())
- + RandomStringUtils.randomAlphabetic(8)
- + "." + ext;
- return new FileObject("", storageService.uploadFromInputStream(new FileInputStream(file), path), null, ext);
- }
- @Test
- public void test1() {
- Long collectionId = 2570204L;
- Collection collection = collectionRepo.findById(collectionId).orElseThrow(new BusinessException("无藏品"));
- if (!collection.isOnShelf() || !collection.isSalable()) {
- collectionId = null;
- } else if (collection.isScheduleSale()) {
- if (collection.getStartTime().isAfter(LocalDateTime.now())) {
- collectionId = null;
- }
- }
- System.out.println(collectionId);
- }
- @Test
- public void savePoint() {
- // collectionRepo.findById(206985L).orElseThrow(new BusinessException("无藏品"));
- collectionService.savePoint(3749128L, LocalDateTime.of(2022, 3, 23, 15, 0, 0));
- }
- @Test
- public void uploadMp4() {
- Arrays.stream(new File("/Users/qiufangchao/Desktop/majiang").listFiles())
- .parallel()
- .filter(f -> !f.getName().contains(".DS_Store"))
- .forEach(file -> {
- System.out.println(file.getName());
- try {
- String url = storageService.uploadFromInputStream(new FileInputStream(file), "video/mahjongman/" + file.getName());
- String thumbPath = "thumb_image/mahjongman/" + file.getName()
- .substring(0, file.getName().lastIndexOf(".")) + ".jpg";
- FFmpegFrameGrabber frameGrabber = new FFmpegFrameGrabber(file);
- Java2DFrameConverter frameConverter = new Java2DFrameConverter();
- try {
- frameGrabber.start();
- Frame frame = null;
- while (frame == null) {
- frame = frameGrabber.grabKeyFrame();
- }
- Objects.requireNonNull(frame, "获取视频缩略图失败");
- BufferedImage thumbBi = frameConverter.convert(frame);
- BufferedImage thumbResized = ImageUtils.resizeJpg(thumbBi, 1000, 1000, false);
- ByteArrayOutputStream os = new ByteArrayOutputStream();
- ImageIO.write(thumbResized, "jpg", os);
- InputStream is = new ByteArrayInputStream(os.toByteArray());
- String thumbUrl = storageService.uploadFromInputStream(is, thumbPath);
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- frameGrabber.stop();
- }
- } catch (Exception e) {
- }
- });
- }
- @Test
- public void test2() {
- String name = "/Users/qiufangchao/Desktop/majiang/bai1-1.mp4";
- Pattern p = Pattern.compile("(\\d+)-(\\d+)");
- Matcher matcher = p.matcher(name);
- matcher.find();
- String firstHour = matcher.group();
- System.out.println(matcher.start());
- System.out.println(firstHour);
- }
- }
|