123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913 |
- package com.fdkankan.scene.service.impl;
- import cn.hutool.core.bean.BeanUtil;
- import cn.hutool.core.collection.CollUtil;
- import cn.hutool.core.io.FileUtil;
- import cn.hutool.core.util.CharsetUtil;
- import cn.hutool.core.util.StrUtil;
- import cn.hutool.core.util.ZipUtil;
- import com.alibaba.fastjson.JSON;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
- import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
- import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.fdkankan.common.constant.*;
- import com.fdkankan.common.exception.BusinessException;
- import com.fdkankan.common.util.FileMd5Util;
- import com.fdkankan.common.util.FileSizeUtil;
- import com.fdkankan.common.util.FileUtils;
- import com.fdkankan.dxf.parse.utils.FdJsonToDxfUtil;
- import com.fdkankan.fyun.config.FYunFileConfig;
- import com.fdkankan.fyun.face.FYunFileServiceInterface;
- import com.fdkankan.fyun.util.OssFileUtil;
- import com.fdkankan.model.constants.ConstantFilePath;
- import com.fdkankan.model.constants.UploadFilePath;
- import com.fdkankan.model.utils.ComputerUtil;
- import com.fdkankan.model.utils.CreateHouseJsonUtil;
- import com.fdkankan.model.utils.CreateObjUtil;
- import com.fdkankan.model.utils.SceneUtil;
- import com.fdkankan.redis.constant.RedisKey;
- import com.fdkankan.redis.constant.RedisLockKey;
- import com.fdkankan.redis.util.RedisLockUtil;
- import com.fdkankan.redis.util.RedisUtil;
- import com.fdkankan.scene.bean.*;
- import com.fdkankan.scene.entity.*;
- import com.fdkankan.scene.mapper.ISceneEditInfoMapper;
- import com.fdkankan.scene.service.*;
- import com.fdkankan.scene.vo.*;
- import com.fdkankan.web.response.ResultData;
- import com.google.common.collect.Lists;
- import com.google.errorprone.annotations.Var;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.cloud.context.config.annotation.RefreshScope;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import org.springframework.web.multipart.MultipartFile;
- import javax.annotation.Resource;
- import java.io.File;
- import java.io.IOException;
- import java.nio.charset.StandardCharsets;
- import java.util.*;
- import java.util.Map.Entry;
- import java.util.concurrent.CompletableFuture;
- import java.util.concurrent.atomic.AtomicInteger;
- import java.util.stream.Collectors;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author
- * @since 2022-01-18
- */
- @Slf4j
- @RefreshScope
- @Service
- public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper, SceneEditInfo> implements ISceneEditInfoService {
- @Value("${fyun.host}")
- private String ossUrlPrefix;
- @Value("${fyun.type}")
- private String fyunType;
- @Value("${ecs.checkFile.maxTimes:20}")
- private int maxCheckTimes;
- @Value("${ecs.checkFile.waitTime:1000}")
- private int waitTime;
- @Autowired
- private ISceneEditControlsService sceneEditControlsService;
- @Autowired
- private ISceneProService sceneProService;
- @Resource
- private FYunFileServiceInterface fYunFileService;
- @Autowired
- RedisUtil redisUtil;
- @Autowired
- private RedisLockUtil redisLockUtil;
- @Autowired
- ISceneDataDownloadService sceneDataDownloadService;
- @Autowired
- private ISceneEditInfoExtService sceneEditInfoExtService;
- @Autowired
- IScenePlusService scenePlusService;
- @Autowired
- IScenePlusExtService scenePlusExtService;
- @Autowired
- private ISceneUploadService sceneUploadService;
- @Autowired
- private ICameraDetailService cameraDetailService;
- @Autowired
- private ICompanyService companyService;
- @Autowired
- private ISurveillanceService surveillanceService;
- @Autowired
- private ISceneAsynOperLogService sceneAsynOperLogService;
- @Autowired
- private ICutModelService cutModelService;
- @Autowired
- private ICommonService commonService;
- @Autowired
- private FYunFileConfig fYunFileConfig;
- @Autowired
- private ISceneDrawService sceneDrawService;
- @Autowired
- private ISceneDynamicPanelService sceneDynamicPanelService;
- @Transactional
- @Override
- public SceneEditInfoVO saveScene(SceneEditInfoParamVO param) {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- SceneEditInfo sceneEditInfoDb = this.getByScenePlusId(scenePlus.getId());
- SceneEditControls sceneEditControlsDb = null;
- if(Objects.nonNull(sceneEditInfoDb)){
- sceneEditControlsDb = sceneEditControlsService.getBySceneEditId(sceneEditInfoDb.getId());
- }
- //用户上传的文件后缀名转小写
- this.lowercaseExtName(param);
- SceneEditInfo sceneEditInfo = BeanUtil.copyProperties(param, SceneEditInfo.class);
- sceneEditInfo.setScenePlusId(scenePlus.getId());
- if(Objects.isNull(sceneEditInfoDb)){
- this.save(sceneEditInfo);
- }else{
- sceneEditInfo.setId(sceneEditInfoDb.getId());
- sceneEditInfo.setVersion(sceneEditInfoDb.getVersion() + 1);
- this.updateById(sceneEditInfo);
- }
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfo.getId());
- if(Objects.nonNull(param.getSns())){
- sceneEditInfoExt.setSnsInfo(JSON.toJSONString(param.getSns()));
- }
- if(Objects.nonNull(param.getStarted())){
- sceneEditInfoExt.setStarted(JSON.toJSONString(param.getStarted()));
- }
- sceneEditInfoExt.setFloorLogoType(param.getFloorLogoType());
- // else{
- // sceneEditInfoExt.setStarted("");
- // }
- sceneEditInfoExtService.updateById(sceneEditInfoExt);
- if(Objects.nonNull(param.getControls())){
- SceneEditControls sceneEditControls = BeanUtil.copyProperties(param.getControls(), SceneEditControls.class);
- sceneEditControls.setEditInfoId(sceneEditInfo.getId());
- if(Objects.isNull(sceneEditControlsDb)){
- sceneEditControlsService.save(sceneEditControls);
- }else{
- sceneEditControls.setId(sceneEditControlsDb.getId());
- sceneEditControlsService.updateById(sceneEditControls);
- }
- }
- SceneEditInfoVO result = BeanUtil.copyProperties(param, SceneEditInfoVO.class);
- result.setCreateTime(sceneEditInfo.getCreateTime());
- return result;
- }
- private void lowercaseExtName(SceneEditInfoParamVO sceneEditInfo){
- if(StrUtil.isNotEmpty(sceneEditInfo.getMusic())){
- String extName = cn.hutool.core.io.FileUtil.extName(sceneEditInfo.getMusic());
- if(StrUtil.isNotEmpty(extName)){
- sceneEditInfo.setMusic(sceneEditInfo.getMusic().replace(extName, extName.toLowerCase()));
- }
- }
- if(StrUtil.isNotEmpty(sceneEditInfo.getMusicFile())){
- String extName = cn.hutool.core.io.FileUtil.extName(sceneEditInfo.getMusicFile());
- if(StrUtil.isNotEmpty(extName)){
- sceneEditInfo.setMusicFile(sceneEditInfo.getMusicFile().replace(extName, extName.toLowerCase()));
- }
- }
- }
- @Override
- public SceneEditInfo getBySceneProId(long sceneProId) {
- return this.getOne(new LambdaQueryWrapper<SceneEditInfo>()
- .eq(SceneEditInfo::getSceneProId, sceneProId));
- }
- @Override
- public SceneEditInfo getByScenePlusId(long scenePlusId) {
- return this.getOne(new LambdaQueryWrapper<SceneEditInfo>()
- .eq(SceneEditInfo::getScenePlusId, scenePlusId));
- }
- @Transactional
- @Override
- public ResultData publicScene(SceneEditInfoParamVO param) throws Exception{
- String num = param.getNum();
- //根据场景码查询数据库
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- SceneEditInfoExt sceneEditInfoExt = null;
- SceneEditControls sceneEditControls = null;
- if(sceneEditInfo == null){
- sceneEditInfo = new SceneEditInfo();
- sceneEditInfo.setSceneProId(scenePlus.getId());
- }else{
- sceneEditControls = sceneEditControlsService.getBySceneEditId(sceneEditInfo.getId());
- sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfo.getId());
- }
- if(sceneEditInfoExt == null){
- sceneEditInfoExt = new SceneEditInfoExt();
- sceneEditInfoExt.setFloorPlanAngle(0f);
- sceneEditInfoExt.setFloorPlanCompass(0f);
- }
- String bucket = scenePlusExt.getYunFileBucket();
- //生成sceneJson
- SceneJsonBean sceneJson = new SceneJsonBean();
- BeanUtil.copyProperties(sceneEditInfoExt, sceneJson, "started");
- BeanUtil.copyProperties(sceneEditInfo, sceneJson);
- sceneJson.setFloorPlanUpload(JSON.parseArray(sceneEditInfo.getFloorPlanUpload()));
- SceneEditControlsVO sceneEditControlsVO = BeanUtil.copyProperties(sceneEditControls, SceneEditControlsVO.class);
- sceneJson.setControls(sceneEditControlsVO);
- sceneJson.setNum(num);
- sceneJson.setCreateTime(scenePlus.getCreateTime());
- sceneJson.setSceneResolution(scenePlusExt.getSceneResolution());
- sceneJson.setSceneFrom(scenePlusExt.getSceneFrom());
- sceneJson.setSceneKind(scenePlusExt.getSceneKind());
- sceneJson.setModelKind(scenePlusExt.getModelKind());
- sceneJson.setOrientation(scenePlusExt.getOrientation());
- if(StrUtil.isNotEmpty(scenePlusExt.getVideos())){
- sceneJson.setVideos(scenePlusExt.getVideos());
- }
- //发布马赛克列表
- sceneJson.setMosaicList(this.getMosaicList(num));
- //发布分享配置
- sceneJson.setSns(JSON.parseObject(sceneEditInfoExt.getSnsInfo()));
- //发布启动页配置
- sceneJson.setStarted(JSON.parseObject(sceneEditInfoExt.getStarted()));
- //处理热点数据,生成hot.json
- this.publicHotData(num, bucket);
- //发布场景关联相关数据
- this.publicLinkSceneData(num, bucket);
- //发布滤镜数据
- this.publicFilterData(num, sceneEditInfoExt.getFilters(), bucket);
- //发布摄像头数据
- this.publicSurveillance(num, sceneEditInfoExt.getSurveillances(), bucket);
- //发布指示牌数据
- this.publicBillboardData(num, bucket);
- //发布模型裁剪
- cutModelService.publicCutModel(num, bucket);
- //发布场景绘制
- sceneDrawService.publicSceneDraw(num, bucket);
- sceneJson.setDynamicPanel(sceneDynamicPanelService.checkDynamicPanel(num));
- //本地写sceneJson文件
- String localSceneJsonPath = String.format(ConstantFilePath.SCENE_DATA_PATH_V4, num) + "scene.json";
- FileUtils.writeFile(localSceneJsonPath, JSON.toJSONString(sceneJson));
- //上传sceneJson文件
- String sceneJsonPath = String.format(UploadFilePath.DATA_VIEW_PATH+"scene.json", num);
- fYunFileService.uploadFile(bucket, JSON.toJSONBytes(sceneJson), sceneJsonPath);
- //删除发布数据中的user目录
- String publicUserPath = String.format(UploadFilePath.USER_VIEW_PATH, num);
- List<String> userViewFileList = fYunFileService.listRemoteFiles(bucket, publicUserPath);
- if(CollUtil.isNotEmpty(userViewFileList)){
- fYunFileService.deleteFolder(bucket, publicUserPath);
- }
- //复制编辑目录到发布目录
- String editPath = String.format(UploadFilePath.USER_EDIT_PATH, param.getNum());
- String viewPath = String.format(UploadFilePath.USER_VIEW_PATH, param.getNum());
- fYunFileService.copyFileBetweenBucket(bucket, editPath, bucket, viewPath);
- //sceneJson放入缓存
- String key = String.format(RedisKey.SCENE_JSON, num);
- redisUtil.set(key, JSON.toJSONString(sceneJson));
- //入库
- if(sceneEditInfo.getId() == null){
- this.save(sceneEditInfo);
- }else{
- this.updateById(sceneEditInfo);
- }
- sceneEditInfoExt.setScenePlusId(scenePlus.getId());
- sceneEditInfoExt.setEditInfoId(sceneEditInfo.getId());
- sceneEditInfoExtService.saveOrUpdate(sceneEditInfoExt);
- scenePlus.setTitle(sceneEditInfo.getTitle());
- scenePlus.setDescription(sceneEditInfo.getDescription());
- scenePlus.setHouseType(this.existsHouseType(bucket, num));
- scenePlusService.updateById(scenePlus);
- return ResultData.ok();
- }
- private int existsHouseType(String bucket, String num){
- String houseTypePath = String.format(UploadFilePath.USER_VIEW_PATH, num) + "houseType.json";
- boolean exist = fYunFileService.fileExist(bucket, houseTypePath);
- return exist ? CommonStatus.YES.code().intValue() : CommonStatus.NO.code().intValue();
- }
- private void publicSurveillance(String num, Integer surveillances, String bucket) throws IOException {
- String surveillanceJsonPath = String.format(UploadFilePath.USER_EDIT_PATH, num) + "surveillance.json";
- if(surveillances == CommonStatus.NO.code().intValue()){
- fYunFileService.deleteFile(bucket, surveillanceJsonPath);
- return;
- }
- List<SurveillanceVO> surveillanceList = surveillanceService.listSurveillance(num);
- fYunFileService.uploadFile(bucket, JSON.toJSONString(surveillanceList).getBytes(StandardCharsets.UTF_8), surveillanceJsonPath);
- }
- private void publicFilterData(String num, int filters, String bucket) throws IOException {
- String userEditPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
- if(filters == CommonStatus.NO.code()){
- fYunFileService.deleteFile(bucket, userEditPath + "filter.json");
- return;
- }
- String key = String.format(RedisKey.SCENE_filter_DATA, num);
- List<String> list = redisUtil.lGet(key, 0, -1);
- JSONArray jsonArray = new JSONArray();
- list.stream().forEach(str->jsonArray.add(JSON.parseObject(str)));
- fYunFileService.uploadFile(bucket, JSON.toJSONBytes(jsonArray), userEditPath + "filter.json");
- }
- public void publicLinkSceneData(String num, String bucket) throws IOException {
- String imgEditPath = String.format(UploadFilePath.IMG_EDIT_PATH, num);
- String userEditPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
- String imgViewPath = String.format(UploadFilePath.IMG_VIEW_PATH, num);
- //清除发布目录中的场景关联图片
- if(fYunFileService.fileExist(bucket,imgViewPath + "panorama")){
- fYunFileService.deleteFolder(bucket,imgViewPath + "panorama");
- }
- //生成links.json并上传到发布目录
- String linkPanKey = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- Map<String, String> linkPanMap = redisUtil.hmget(linkPanKey);
- if(CollUtil.isEmpty(linkPanMap)){
- return;
- }
- List<JSONObject> tags = Lists.newArrayList();
- List<TagBean> tagBeanList = new ArrayList<>();
- if(CollUtil.isNotEmpty(linkPanMap)){
- linkPanMap.entrySet().stream().forEach(entry -> {
- JSONObject jsonObject = JSON.parseObject(entry.getValue());
- tagBeanList.add(
- TagBean.builder()
- .createTime(jsonObject.getLong("createTime"))
- .tag(jsonObject).build());
- });
- //按创建时间倒叙排序
- tagBeanList.sort(Comparator.comparingLong(TagBean::getCreateTime).reversed());
- //移除createTime字段
- tags = tagBeanList.stream().map(tagBean -> {
- JSONObject tag = tagBean.getTag();
- tag.remove("createTime");
- return tag;
- }).collect(Collectors.toList());
- }
- String linkScenePath = userEditPath + "links.json";
- fYunFileService.uploadFile(bucket, JSON.toJSONString(tags).getBytes(StandardCharsets.UTF_8), linkScenePath);
- //拷贝编辑目录到发布目录
- fYunFileService.copyFileBetweenBucket(bucket, imgEditPath + "panorama", bucket, imgViewPath + "panorama");
- }
- private void publicHotData(String sceneNum, String bucket) throws IOException {
- String hotDataKey = String.format(RedisKey.SCENE_HOT_DATA, sceneNum);
- Map<String, String> hotMap = redisUtil.hmget(hotDataKey);
- JSONArray tags = new JSONArray();
- if(CollUtil.isNotEmpty(hotMap)){
- List<TagBean> tagBeanList = hotMap.entrySet().stream().map(entry -> {
- JSONObject jsonObject = JSON.parseObject(entry.getValue());
- return TagBean.builder()
- .createTime(jsonObject.getLong("createTime"))
- .tag(jsonObject).build();
- }).collect(Collectors.toList());
- //按创建时间倒叙排序
- tagBeanList.sort(Comparator.comparingLong(TagBean::getCreateTime).reversed());
- //移除createTime字段
- tagBeanList.stream().forEach(tagBean -> {
- tags.add(tagBean.getTag());
- });
- }
- String hotJsonPath = String.format(UploadFilePath.USER_EDIT_PATH, sceneNum) + "hot.json";
- fYunFileService.uploadFile(bucket, tags.toString().getBytes(), hotJsonPath);
- // this.saveTagsToSceneEditInfo(sceneNum, sceneEditInfo);
- }
- private void publicBillboardData(String sceneNum, String bucket) throws IOException {
- String Key = String.format(RedisKey.SCENE_BILLBOARDS, sceneNum);
- String userEditPath = String.format(UploadFilePath.USER_EDIT_PATH, sceneNum) + "billboards.json";
- List<String> list = redisUtil.hgetValues(Key);
- if(CollUtil.isEmpty(list)){
- fYunFileService.deleteFile(bucket, userEditPath);
- return;
- }
- List<JSONObject> collect = list.stream().map(str -> JSON.parseObject(str)).collect(Collectors.toList());
- fYunFileService.uploadFile(bucket, JSON.toJSONString(collect).getBytes(), userEditPath);
- }
- @Override
- public SceneInfoVO getSceneInfo(@Var SceneInfoParamVO param) throws Exception{
- SceneInfoReqType sceneInfoReqType = SceneInfoReqType.get(param.getReqType());
- switch (sceneInfoReqType){
- //如果是编辑页面请求,查数据库
- case EDIT:
- return this.getSceneInfo4Edit(param.getNum());
- //如果是查看页面请求,查redis
- case VIEW:
- return this.getSceneInfo4View(param.getNum());
- }
- return null;
- }
- /**
- * <p>
- 编辑页面获取场景详情信息
- * </p>
- * @author dengsixing
- * @date 2022/1/21
- * @param num
- * @return com.fdkankan.scene.vo.SceneInfoVO
- **/
- private SceneInfoVO getSceneInfo4Edit(String num) throws Exception{
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- if(Objects.isNull(sceneEditInfo)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfo.getId());
- SceneEditControls sceneEditControls = sceneEditControlsService.getBySceneEditId(sceneEditInfo.getId());
- SceneInfoVO sceneInfoVO = new SceneInfoVO();
- BeanUtil.copyProperties(sceneEditInfoExt, sceneInfoVO, "started");
- BeanUtil.copyProperties(sceneEditInfo, sceneInfoVO);
- sceneInfoVO.setFloorPlanUpload(JSON.parseArray(sceneEditInfo.getFloorPlanUpload()));
- if(Objects.isNull(sceneInfoVO.getFloorPlanAngle())){
- sceneInfoVO.setFloorPlanAngle(0f);
- }
- if(Objects.isNull(sceneInfoVO.getFloorPlanCompass())){
- sceneInfoVO.setFloorPlanCompass(0f);
- }
- sceneInfoVO.setControls(BeanUtil.copyProperties(sceneEditControls, SceneEditControlsVO.class));
- sceneInfoVO.setNum(num);
- sceneInfoVO.setCreateTime(scenePlusExt.getAlgorithmTime());
- sceneInfoVO.setSceneResolution(scenePlusExt.getSceneResolution());
- sceneInfoVO.setSceneFrom(scenePlusExt.getSceneFrom());
- sceneInfoVO.setSceneKind(scenePlusExt.getSceneKind());
- sceneInfoVO.setModelKind(scenePlusExt.getModelKind());
- sceneInfoVO.setVideos(scenePlusExt.getVideos());
- if(CommonStatus.YES.code().intValue() == sceneEditInfoExt.getMosaic()){
- sceneInfoVO.setMosaicList(this.getMosaicList(num));
- }
- sceneInfoVO.setSpace(FileSizeUtil.convert(scenePlusExt.getSpace(), FileSizeUnitType.MB.code()));
- sceneInfoVO.setSns(JSON.parseObject(sceneEditInfoExt.getSnsInfo()));
- sceneInfoVO.setStarted(JSON.parseObject(sceneEditInfoExt.getStarted()));
- sceneInfoVO.setOrientation(scenePlusExt.getOrientation());
- this.SortBoxVideos(sceneInfoVO);
- this.setExtData(sceneInfoVO, scenePlus.getCameraId());
- sceneInfoVO.setDynamicPanel(sceneDynamicPanelService.checkDynamicPanel(num));
- return sceneInfoVO;
- }
- public static void main(String[] args) {
- String test = "";
- // JSONObject jsonObject = JSON.parseObject(test);
- System.out.println(JSON.toJSONString(test));
- }
- private void SortBoxVideos(SceneInfoVO sceneInfoVO){
- String boxVideos = sceneInfoVO.getBoxVideos();
- if(StrUtil.isEmpty(boxVideos)){
- return;
- }
- JSONArray boxVideoArr = JSON.parseArray(boxVideos);
- if(CollUtil.isEmpty(boxVideoArr)){
- return;
- }
- List<TagBean> tagBeanList = boxVideoArr.stream().map(o -> {
- JSONObject item = (JSONObject) o;
- return TagBean.builder()
- .createTime(item.getLong("createTime"))
- .tag(item).build();
- }).collect(Collectors.toList());
- //按创建时间倒叙排序
- tagBeanList.sort(Comparator.comparingLong(TagBean::getCreateTime).reversed());
- //移除createTime字段
- List<JSONObject> boxVideoList = tagBeanList.stream().map(tagBean -> {
- JSONObject tag = tagBean.getTag();
- tag.remove("createTime");
- return tag;
- }).collect(Collectors.toList());
- sceneInfoVO.setBoxVideos(JSON.toJSONString(boxVideoList));
- }
- /**
- * <p>
- getInfo接口返回字段扩展
- * </p>
- * @author dengsixing
- * @date 2022/3/9
- **/
- private void setExtData(SceneInfoVO sceneInfoVO, Long cameraId) throws Exception{
- if(Objects.isNull(cameraId)){
- return;
- }
- CameraDetail cameraDetail = cameraDetailService.findByCameraId(cameraId);
- if(Objects.isNull(cameraDetail)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7010);
- }
- if(Objects.isNull(cameraDetail.getCompanyId())){
- return;
- }
- Company company = companyService.getById(cameraDetail.getCompanyId());
- if(Objects.isNull(company)){
- return;
- }
- sceneInfoVO.setDataSync(company.getDataSync());
- }
- /**
- * <p>
- 查看页面获取场景详情信息
- * </p>
- * @author dengsixing
- * @date 2022/1/21
- * @param num
- * @return com.fdkankan.scene.vo.SceneInfoVO
- **/
- private SceneInfoVO getSceneInfo4View(String num) throws Exception{
- //校验场景是否为空、封存、计算中
- ScenePlus scenePlus = scenePlusService.checkSceneAvail(num);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- //访问量+1
- scenePlusService.updateViewCount(num);
- String key = String.format(RedisKey.SCENE_JSON, num);
- String sceneJson = redisUtil.get(key);
- SceneInfoVO sceneInfoVO = null;
- //先查询redis
- if(StrUtil.isEmpty(sceneJson)) {
- String objectName = String.format(ConstantFilePath.SCENE_VIEW_DATA_DATA_SCENEJSON, num);
- sceneJson = fYunFileService.getFileContent(scenePlusExt.getYunFileBucket(), objectName);
- redisUtil.set(key, sceneJson);
- }
- sceneInfoVO = JSON.parseObject(sceneJson, SceneInfoVO.class);
- sceneInfoVO.setScenePassword(null);
- if(Objects.isNull(sceneInfoVO.getFloorPlanAngle())){
- sceneInfoVO.setFloorPlanAngle(0f);
- }
- if(Objects.isNull(sceneInfoVO.getFloorPlanCompass())){
- sceneInfoVO.setFloorPlanCompass(0f);
- }
- if(Objects.isNull(sceneInfoVO.getFloorLogoType())){
- sceneInfoVO.setFloorLogoType(1);
- }
- SceneEditControlsVO controls = sceneInfoVO.getControls();
- if(Objects.isNull(controls.getShowShare())){
- controls.setShowShare(CommonStatus.YES.code().intValue());
- }
- if(Objects.isNull(controls.getShowCapture())){
- controls.setShowCapture(CommonStatus.YES.code().intValue());
- }
- if(Objects.isNull(controls.getShowBillboardTitle())){
- controls.setShowBillboardTitle(CommonStatus.YES.code().intValue());
- }
- if(Objects.isNull(controls.getShowDrawTitle())){
- controls.setShowDrawTitle(CommonStatus.YES.code().intValue());
- }
- if(Objects.isNull(controls.getShowSurveilScope())){
- controls.setShowSurveilScope(CommonStatus.YES.code().intValue());
- }
- sceneInfoVO.setPayStatus(scenePlus.getPayStatus());
- return sceneInfoVO;
- }
- @Override
- public ResultData saveCad(BaseDataParamVO param) throws Exception {
- String num = param.getNum();
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String editUserPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
- String localDataPath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num);
- JSONObject fileInfoJson = JSON.parseObject(param.getData());
- Float angel = null;
- Float compass = null;
- String floorJsonData = fileInfoJson.getString("floorJsonData");
- if(StrUtil.isNotBlank(floorJsonData)){
- JSONObject jsonObject = JSON.parseObject(floorJsonData);
- angel = jsonObject.getFloat("angle");
- compass = jsonObject.getFloat("compass");
- }
- //处理户型图数据
- //上传floorplan_user.json文件
- FileUtils.writeFile(localDataPath + "floorplan_user.json", floorJsonData);
- fYunFileService.uploadFile(bucket, localDataPath + "floorplan_user.json", editUserPath + "floorplan.json");
- //写入数据库
- Byte floorPlanUser = null;
- if(StrUtil.isNotEmpty(floorJsonData)){
- JSONObject houseTypeJson = CreateHouseJsonUtil
- .createHouseTypeJsonByUser(localDataPath + "floorplan_user.json");
- if(Objects.nonNull(houseTypeJson)) {
- fYunFileService.uploadFile(bucket, houseTypeJson.toJSONString().getBytes(), editUserPath + "houseType.json");
- }
- floorPlanUser = CommonStatus.YES.code();
- }
- SceneEditInfo sceneEditInfoDb = this.getByScenePlusId(scenePlus.getId());
- if(Objects.nonNull(sceneEditInfoDb)){
- LambdaUpdateWrapper<SceneEditInfo> updateWrapper = new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version+" + 1)
- .eq(SceneEditInfo::getId, sceneEditInfoDb.getId());
- if(floorPlanUser != null){
- updateWrapper.set(SceneEditInfo::getFloorPlanUser, floorPlanUser);
- }
- this.update(updateWrapper);
- }else{
- sceneEditInfoDb = new SceneEditInfo();
- sceneEditInfoDb.setScenePlusId(scenePlus.getId());
- sceneEditInfoDb.setFloorPlanUser(floorPlanUser);
- this.save(sceneEditInfoDb);
- }
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfoDb.getId());
- if(Objects.isNull(sceneEditInfoExt)){
- sceneEditInfoExt = new SceneEditInfoExt();
- sceneEditInfoExt.setEditInfoId(sceneEditInfoDb.getId());
- }
- if(Objects.nonNull(angel)){
- sceneEditInfoExt.setFloorPlanAngle(angel);
- }
- if(Objects.nonNull(compass)){
- sceneEditInfoExt.setFloorPlanCompass(compass);
- }
- sceneEditInfoExtService.saveOrUpdate(sceneEditInfoExt);
- return ResultData.ok();
- }
- @Override
- public ResultData uploadDxf(MultipartFile file, String num) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String extName = FileUtil.extName(file.getOriginalFilename());
- if(!"dxf".equals(extName)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7007.code(), ErrorCode.FAILURE_CODE_7007.formatMessage("dxf"));
- }
- String dfxPath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + UUID.randomUUID() + "." + extName;
- String floorplanUserPath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + UUID.randomUUID() + ".json";
- file.transferTo(new File(dfxPath));
- try {
- String editUserPath = String.format(UploadFilePath.USER_EDIT_PATH, num);
- FdJsonToDxfUtil.dxfToFdJson(dfxPath, floorplanUserPath);
- fYunFileService.uploadFile(scenePlusExt.getYunFileBucket(), floorplanUserPath, editUserPath + "floorplan.json");
- JSONObject houseTypeJson = CreateHouseJsonUtil
- .createHouseTypeJsonByUser(floorplanUserPath);
- if(Objects.nonNull(houseTypeJson)) {
- fYunFileService.uploadFile(scenePlusExt.getYunFileBucket(), houseTypeJson.toJSONString().getBytes(), editUserPath + "houseType.json");
- }
- SceneEditInfo sceneEditInfoDb = this.getByScenePlusId(scenePlus.getId());
- this.update(new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version+" + 1)
- .set(SceneEditInfo::getFloorPlanUser, 1)
- .eq(SceneEditInfo::getId, sceneEditInfoDb.getId()));
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfoDb.getId());
- sceneEditInfoExt.setFloorPlanAngle(0f);
- sceneEditInfoExt.setFloorPlanCompass(0f);
- sceneEditInfoExtService.saveOrUpdate(sceneEditInfoExt);
- }catch (Exception e){
- log.error("cad文件转换失败");
- ResultData.error(ErrorCode.FAILURE_CODE_7013);
- }finally {
- FileUtil.del(dfxPath);
- FileUtil.del(floorplanUserPath);
- }
- return ResultData.ok();
- }
- @Override
- public ResultData downloadDxf(String num) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- if(Objects.isNull(sceneEditInfo.getFloorPlanUser()) || sceneEditInfo.getFloorPlanUser() == CommonStatus.NO.code()){
- return ResultData.ok();
- }
- String localFloorplan = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + UUID.randomUUID() + ".json";
- fYunFileService.downloadFile(scenePlusExt.getYunFileBucket(),
- String.format(UploadFilePath.USER_EDIT_PATH, num) + "floorplan.json", localFloorplan);
- String localDxf = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + UUID.randomUUID() + ".dxf";
- FdJsonToDxfUtil.fdJsonToDxf(localFloorplan, localDxf);
- String key = OssFileUtil.getUploadTempFileKey(null, "dxf");
- fYunFileService.uploadFile(scenePlusExt.getYunFileBucket(), localDxf, key);
- String url = fYunFileConfig.getHost() + key;
- return ResultData.ok(url);
- }
- @Override
- public ResultData resetCad(String num) throws IOException {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- ScenePlusExt scenePlusExt = scenePlusExtService
- .getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String path = scenePlusExt.getDataSource();
- //户型图上传 恢复默认并发布同时点击刷新查看页面,平面图会变形,所以这里先注释掉 bug-36281 2023-05-04
- // String ossResultPath = String.format(UploadFilePath.scene_result_data_path, num);
- // String floorplanCadPath = ossResultPath + "floorplan_cad/";
- // fYunFileService.copyFileBetweenBucket(bucket, floorplanCadPath, bucket, String.format(UploadFilePath.USER_EDIT_PATH, num));
- // String userEditPath = UploadFilePath.USER_EDIT_PATH + "floor-cad-%s.%s";
- // String floorCadPath = path + "/results/floorplan_cad";
- // List<String> floorCadList = FileUtils.getFileList(floorCadPath);
- // if(CollUtil.isNotEmpty(floorCadList)){
- // floorCadList.stream().forEach(str->{
- // String substring = str.substring(str.lastIndexOf(File.separator) + 1);
- // String[] arr = substring.split("floor");
- // String[] arr2 = arr[1].split("\\.");
- // fYunFileService.uploadFile(bucket, str, String.format(userEditPath, num, arr2[0], arr2[1]));
- // });
- // }
- //根据floorplan_cad.json生成houseType.json
- this.uploadHouseTypeJson(num, bucket);
- SceneEditInfo sceneEditInfoDb = this.getByScenePlusId(scenePlus.getId());
- SceneEditInfoExt sceneEditInfoExt = null;
- if(Objects.nonNull(sceneEditInfoDb)){
- LambdaUpdateWrapper<SceneEditInfo> updateWrapper = new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version+" + 1)
- .set(SceneEditInfo::getFloorPlanUser, CommonStatus.NO.code())
- .eq(SceneEditInfo::getId, sceneEditInfoDb.getId());
- this.update(updateWrapper);
- sceneEditInfoExt = sceneEditInfoExtService.getByEditInfoId(sceneEditInfoDb.getId());
- }else{
- sceneEditInfoDb = new SceneEditInfo();
- sceneEditInfoDb.setScenePlusId(scenePlus.getId());
- sceneEditInfoDb.setFloorPlanUser(CommonStatus.NO.code());
- this.save(sceneEditInfoDb);
- }
- if(Objects.isNull(sceneEditInfoExt)){
- sceneEditInfoExt = new SceneEditInfoExt();
- sceneEditInfoDb.setScenePlusId(scenePlus.getId());
- sceneEditInfoExt.setEditInfoId(sceneEditInfoDb.getId());
- }
- sceneEditInfoExt.setFloorPlanAngle(0f);
- sceneEditInfoExt.setFloorPlanCompass(0f);
- sceneEditInfoExtService.saveOrUpdate(sceneEditInfoExt);
- return ResultData.ok();
- }
- private void uploadHouseTypeJson(String num, String bucket) throws IOException {
- JSONObject result = new JSONObject();
- result.put("name", "houseType.json");
- result.put("version", "2.1");
- String floorplanCadPath = String.format(UploadFilePath.DATA_VIEW_PATH, num) + "floorplan_cad.json";
- if(!fYunFileService.fileExist(bucket, floorplanCadPath)){
- log.warn("生成houseType.json失败,原因:floorplan_cad.json文件不存在,num:{}", num);
- return;
- }
- String floorcadStr = fYunFileService.getFileContent(bucket, floorplanCadPath);
- JSONObject floorcadObj = JSON.parseObject(floorcadStr);
- JSONArray floors = floorcadObj.getJSONArray("floors");
- JSONArray targetFloors = new JSONArray();
- result.put("floors", targetFloors);
- for(int i = 0; i < floors.size(); i++){
- JSONObject floor = (JSONObject)floors.get(i);
- JSONArray[] pointsAndWalls = this.createHouseTypeJsonHandler(floor);
- JSONArray points = pointsAndWalls[0];
- JSONArray walls = pointsAndWalls[1];
- JSONObject targetFloor = new JSONObject();
- targetFloor.put("points", points);
- targetFloor.put("walls", walls);
- targetFloors.add(targetFloor);
- }
- String hourseTypeJsonPath = String.format(UploadFilePath.USER_EDIT_PATH, num) + "houseType.json";
- fYunFileService.uploadFile(bucket, result.toJSONString().getBytes(), hourseTypeJsonPath);
- }
- private JSONArray[] createHouseTypeJsonHandler(JSONObject floor){
- JSONArray[] result = new JSONArray[2];
- //处理点
- Map<Integer, VertexBean> vertexMap = new HashMap<>();
- Map<String, PointBean> pointMap = new HashMap<>();
- Map<Integer, String> vpMap = new HashMap<>();
- JSONArray vertexArr = floor.getJSONArray("vertex-xy");
- for(int i = 0; i < vertexArr.size(); i++){
- Object o = vertexArr.get(i);
- VertexBean vertexBean = JSON.parseObject(JSON.toJSONString(o), VertexBean.class);
- Integer vertexId = vertexBean.getId();
- vertexMap.put(vertexId, vertexBean);
- String pointId = "Point" + i;
- pointMap.put(pointId, PointBean.builder().vectorId(pointId).x(vertexBean.getX()).y(vertexBean.getY()).build());
- vpMap.put(vertexId, pointId);
- }
- //处理墙
- Map<Integer, SegmentBean> segmentMap = new HashMap<>();
- Map<String, WallBean> wallMap = new HashMap<>();
- Map<Integer, String> swMap = new HashMap<>();
- JSONArray segmentArr = floor.getJSONArray("segment");
- Map<String, String> startMap = new HashMap<>();
- Map<String, String> endMap = new HashMap<>();
- for(int i = 0; i < segmentArr.size(); i++){
- Object o = segmentArr.get(i);
- SegmentBean segmentBean = JSON.parseObject(JSON.toJSONString(o), SegmentBean.class);
- String startPointId = vpMap.get(segmentBean.getA());
- String endPointId = vpMap.get(segmentBean.getB());
- segmentBean.setStartPointId(startPointId);
- segmentBean.setEndPointId(endPointId);
- Integer segmentId = segmentBean.getId();
- segmentMap.put(segmentId, segmentBean);
- String wallId = "Wall" + i;
- WallBean wallBean = WallBean.builder()
- .vectorId(wallId)
- .start(segmentBean.getStartPointId())
- .end(segmentBean.getEndPointId())
- .children(new String[]{})
- .width(0.2d)
- .build();
- wallMap.put(wallId, wallBean);
- startMap.put(wallBean.getStart(), wallBean.getVectorId());
- endMap.put(wallBean.getEnd(), wallBean.getVectorId());
- swMap.put(segmentId, wallId);
- }
- Collection<PointBean> pointBeans = pointMap.values();
- for (PointBean pointBean : pointBeans) {
- Map<String, String> parent = new HashMap<>();
- String startParent = startMap.get(pointBean.getVectorId());
- String endParent = endMap.get(pointBean.getVectorId());
- parent.put(startParent, "start");
- parent.put(endParent, "end");
- pointBean.setParent(parent);
- }
- JSONArray pointArr = JSON.parseArray(JSON.toJSONString(pointBeans));
- result[0] = pointArr;
- Collection<WallBean> wallBeans = wallMap.values();
- JSONArray wallArr = JSON.parseArray(JSON.toJSONString(wallBeans));
- result[1] = wallArr;
- return result;
- }
- @Override
- public ResultData renameCad(RenameCadParamVO param) throws IOException {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String key = String.format(UploadFilePath.USER_EDIT_PATH, param.getNum()) + "floorplan.json";
- String floorplanJson = fYunFileService.getFileContent(bucket, key);
- if(StrUtil.isEmpty(floorplanJson)){
- return ResultData.ok();
- }
- Map<Integer, String> renameMap = new HashMap<>();
- param.getFloors().stream().forEach(floor->{
- renameMap.put(floor.getSubgroup(), floor.getName());
- });
- JSONObject jsonObject = JSON.parseObject(floorplanJson);
- if(Objects.isNull(jsonObject)){
- return ResultData.ok();
- }
- JSONArray floorArr = jsonObject.getJSONArray("floors");
- if(CollUtil.isEmpty(floorArr)){
- return ResultData.ok();
- }
- for (Object o : floorArr) {
- JSONObject item = (JSONObject)o;
- int subgroup = item.getIntValue("subgroup");
- String name = renameMap.get(subgroup);
- if(StrUtil.isEmpty(name)){
- continue;
- }
- item.put("name", name);
- }
- fYunFileService.uploadFile(bucket, jsonObject.toJSONString().getBytes(), key);
- return ResultData.ok();
- }
- private JSONObject updateFloorName(String sourceFloors, String targeFloors){
- JSONArray sourceFloorsJson = JSON.parseArray(sourceFloors);
- JSONObject targeFloorsJson = JSONObject.parseObject(targeFloors);
- JSONArray array = targeFloorsJson.getJSONArray("floors");
- for (int i = 0; i < array.size(); ++i) {
- JSONObject targetFloor = array.getJSONObject(i);
- int targetId = targetFloor.getIntValue("id");
- for (int j = 0; j < sourceFloorsJson.size(); ++j) {
- JSONObject floor = sourceFloorsJson.getJSONObject(j);
- int id = floor.getIntValue("id");
- String name = floor.getString("name");
- if (targetId != id)
- continue;
- targetFloor.put("name", name);
- }
- }
- return targeFloorsJson;
- }
- @Override
- public void upgradeVersionById(Long id) {
- this.update(new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version+" + 1)
- .eq(SceneEditInfo::getId, id));
- }
- @Override
- public void upgradeVersionAndImgVersionById(Long id) {
- this.update(new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version + " + 1)
- .setSql("img_version=img_version + " + 1)
- .eq(SceneEditInfo::getId, id));
- }
- @Override
- public void upgradeSceneJsonVersion(String num, int version, Integer imgVersion, String bucket) throws IOException {
- //更新redis缓存版本号
- String key = String.format(RedisKey.SCENE_JSON, num);
- String sceneJson = redisUtil.get(key);
- if(StrUtil.isNotEmpty(sceneJson)){
- SceneJsonBean sceneJsonBean = JSON.parseObject(sceneJson, SceneJsonBean.class);
- if(Objects.nonNull(version)){
- sceneJsonBean.setVersion(version);
- }
- if(Objects.nonNull(imgVersion)){
- sceneJsonBean.setImgVersion(imgVersion);
- }
- redisUtil.set(key, JSON.toJSONString(sceneJsonBean));
- }
- //更新oss scene.json版本号
- String sceneJsonPath = String.format(UploadFilePath.DATA_VIEW_PATH, num) + "scene.json";
- sceneJson= fYunFileService.getFileContent(bucket, sceneJsonPath);
- if(StrUtil.isNotEmpty(sceneJson)){
- SceneJsonBean sceneJsonBean = JSON.parseObject(sceneJson, SceneJsonBean.class);
- if(Objects.nonNull(version)){
- sceneJsonBean.setVersion(version);
- }
- if(Objects.nonNull(imgVersion)){
- sceneJsonBean.setImgVersion(imgVersion);
- }
- fYunFileService.uploadFile(bucket, JSON.toJSONString(sceneJsonBean).getBytes(StandardCharsets.UTF_8), sceneJsonPath);
- }
- }
- @Override
- public ResultData uploadPanorama(String num, MultipartFile file) throws Exception {
- if(!file.getOriginalFilename().endsWith(".zip") && !file.getOriginalFilename().endsWith(".jpg")){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7007, "jpg或者zip");
- }
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(scenePlus == null){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- //查询是否存在等待中的异步操作记录,如果存在,抛出业务异常,终止操作
- sceneAsynOperLogService.checkSceneAsynOper(num, null, SceneAsynModuleType.UPLOAD_DOWNLOAD.code() , SceneAsynFuncType.PANORAMIC_IMAGE.code());
- //清除全景图异步操作记录,防止再次下载的时候请求到旧的压缩包
- sceneAsynOperLogService.cleanLog(num, SceneAsynModuleType.UPLOAD_DOWNLOAD.code(), SceneAsynFuncType.PANORAMIC_IMAGE.code());
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- //原始计算根目录
- // String path = "F:\\test";
- String path = scenePlusExt.getDataSource();
- //全景图计算根目录
- String target = path + "_images";
- //解压缩文件存放目录
- String targetImagesPath = target + "/extras/images/";
- //压缩文件保存目录
- String zipTargetFilePath = targetImagesPath + file.getOriginalFilename();
- //判断全景图缓存是否存在,如果不存在,从计算目录中拷贝到缓存目录
- // this.cachePanorama(path, num);
- //先删除本地文件
- FileUtils.deleteDirectory(targetImagesPath);
- File targetFile = new File(zipTargetFilePath);
- if(!targetFile.getParentFile().exists()){
- targetFile.getParentFile().mkdirs();
- }
- file.transferTo(targetFile);
- //如果是压缩包上传,需要解压缩
- int async = CommonStatus.NO.code();
- if(file.getOriginalFilename().endsWith(".zip")){
- //标记为异步处理
- async = CommonStatus.YES.code();
- //解压zip包
- ZipUtil.unzip(zipTargetFilePath,targetImagesPath, CharsetUtil.CHARSET_GBK);
- //删除压缩包
- FileUtils.delFile(zipTargetFilePath);
- }
- //判断文件夹目录结构,图片必须放在压缩包根目录下,不支持空文件夹或其他格式文件上传
- File[] files = new File(targetImagesPath).listFiles();
- Arrays.stream(files).forEach(item->{
- if(item.isDirectory()){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7018);
- }
- });
- //获取解压后的文件列表
- List<String> uploadFileList = FileUtils.getFileList(targetImagesPath);
- if(CollUtil.isEmpty(uploadFileList)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5062);
- }
- //判断是否有可用的jpg文件
- boolean existJpg = false;
- if(CollUtil.isNotEmpty(uploadFileList)){
- existJpg = uploadFileList.stream().anyMatch(str -> {
- if(str.endsWith(".jpg")){
- return true;
- }
- return false;
- });
- }
- if(!existJpg){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5062);
- }
- //比对图片列表,不存在的要返回名称集合
- String ossVisionPath = String.format(UploadFilePath.IMG_VIEW_PATH, num) + "vision.txt";
- String visionPath = String.format(ConstantFilePath.SCENE_DATA_PATH_V4, num) + "vision.txt";
- fYunFileService.downloadFile(ossVisionPath, visionPath);
- List<String> panoramaImageList = SceneUtil.getPanoramaImageList(visionPath);
- List<String> notExistFileList = uploadFileList.stream().filter(filePath -> {
- filePath = filePath.substring(filePath.lastIndexOf(File.separator) + 1);
- if(CollUtil.isEmpty(panoramaImageList) || panoramaImageList.contains(filePath)){
- return false;
- }
- return true;
- }).collect(Collectors.toList());
- if(CollUtil.isNotEmpty(notExistFileList)){
- //删除错误文件
- notExistFileList.parallelStream().forEach(filePath->{
- FileUtils.deleteFile(filePath);
- });
- }
- //判断成功的图片,如果成功图片为0,就直接返回,不需要执行算法
- uploadFileList = FileUtils.getFileList(targetImagesPath);
- if(CollUtil.isEmpty(uploadFileList)){
- if(CollUtil.isNotEmpty(notExistFileList)){
- notExistFileList = notExistFileList.stream().map(filePath -> {
- return filePath.substring(filePath.lastIndexOf(File.separator) + 1);
- }).collect(Collectors.toList());
- }
- return ResultData.ok(new UploadPanoramaVO(0,0, notExistFileList));
- }
- //上传
- Map<String, String> map = new HashMap<>();
- String imgViewPath = String.format(UploadFilePath.IMG_VIEW_PATH, num);
- fYunFileService.downloadFile(bucket, imgViewPath + "vision.modeldata", target + File.separator + "extras" + File.separator + "vision.modeldata");
- CreateObjUtil.convertVisionmodeldataToTxt(target + File.separator + "extras" + File.separator + "vision.modeldata",
- target + File.separator + "extras" + File.separator + "vision.txt");
- String ossResultPath = String.format(UploadFilePath.scene_result_data_path, num);
- fYunFileService.downloadFile(bucket, ossResultPath + "data.json", target + File.separator+"data.json");
- fYunFileService.downloadFile(bucket, ossResultPath + "project.json", target + File.separator+"project.json");
- //data.json增加extras为执行重建算法
- String data = FileUtils.readFile(target + File.separator+"data.json");
- if(data != null){
- JSONObject floorplanJson = new JSONObject();
- floorplanJson.put("has_source_images", true);
- floorplanJson.put("has_vision_txt", true);
- JSONObject dataJson = JSONObject.parseObject(data);
- dataJson.put("extras", floorplanJson);
- dataJson.put("split_type", "SPLIT_V8");
- //V5表示不需要生成high,low文件
- String skyboxType = "SKYBOX_V6";
- if(scenePlusExt.getSceneScheme() == 11){
- skyboxType = "SKYBOX_V7";
- }
- //sceneScheme为3切成瓦片图
- if(scenePlusExt.getSceneScheme() == 3){
- if("4k".equals(scenePlusExt.getSceneResolution())){
- skyboxType = "SKYBOX_V14";
- }else{
- skyboxType = "SKYBOX_V13";
- }
- }
- dataJson.put("skybox_type", skyboxType);
- FileUtils.writeFile(target + File.separator+"data.json", new String(dataJson.toString().getBytes(), "UTF-8"));
- }
- if(new File(target + File.separator + "capture").exists()){
- new File(target + File.separator + "capture").delete();
- }
- if(new File(target + File.separator + "results").exists()){
- FileUtils.delAllFile(target + File.separator + "results");
- }
- fYunFileService.downloadFile(ConstantFilePath.OSS_PREFIX + path.replace(ConstantFilePath.BUILD_MODEL_PATH, "") + "/data.fdage", target + File.separator + "capture/data.fdage");
- //如果部分成功,则需要返回成功数量和失败列表
- if(CollUtil.isNotEmpty(notExistFileList)){
- notExistFileList = notExistFileList.stream().map(filePath -> {
- return filePath.substring(filePath.lastIndexOf(File.separator) + 1);
- }).collect(Collectors.toList());
- }
- UploadPanoramaVO uploadPanoramaVO = new UploadPanoramaVO();
- uploadPanoramaVO.setAsyn(async);
- if(async == CommonStatus.YES.code().intValue()){
- List<String> finalUploadFileList = uploadFileList;
- List<String> finalNotExistFileList = notExistFileList;
- CompletableFuture.runAsync(() -> {
- SceneAsynOperLog sceneAsynOperLog = new SceneAsynOperLog();
- sceneAsynOperLog.setNum(num);
- sceneAsynOperLog.setOperType(SceneAsynOperType.UPLOAD.code());
- sceneAsynOperLog.setModule(SceneAsynModuleType.UPLOAD_DOWNLOAD.code());
- sceneAsynOperLog.setFunc(SceneAsynFuncType.PANORAMIC_IMAGE.code());
- if(CollUtil.isNotEmpty(finalNotExistFileList)){
- Map<String, Object> extData = new HashMap<>();
- extData.put("successCnt", finalUploadFileList.size());
- extData.put("failList", finalNotExistFileList);
- sceneAsynOperLog.setExtData(JSON.toJSONString(extData));
- }
- sceneAsynOperLogService.save(sceneAsynOperLog);
- try {
- this.uploadPanoramaHandler(num,bucket,target,imgViewPath, finalUploadFileList,targetImagesPath);
- sceneAsynOperLog.setState(CommonOperStatus.SUCCESS.code());
- } catch (Exception e) {
- log.error("上传全景图报错,num:" + num, e);
- sceneAsynOperLog.setState(CommonOperStatus.FAILD.code());
- }
- sceneAsynOperLogService.updateById(sceneAsynOperLog);
- });
- }else{
- this.uploadPanoramaHandler(num,bucket,target,imgViewPath,uploadFileList,targetImagesPath);
- if(CollUtil.isNotEmpty(notExistFileList)){
- uploadPanoramaVO.setSuccessCnt(uploadFileList.size());
- uploadPanoramaVO.setFailList(notExistFileList);
- }
- }
- return ResultData.ok(uploadPanoramaVO);
- }
- public void uploadPanoramaHandler(String num, String bucket, String target, String imgViewPath, List<String> uploadFileList, String targetImagesPath) throws Exception {
- CreateObjUtil.build3dModel(target , "1");
- String uploadJsonPath= target + File.separator + "results" +File.separator+"upload.json";
- Thread.sleep(2000);
- boolean exist = ComputerUtil.checkComputeCompleted(uploadJsonPath, maxCheckTimes, waitTime);
- if(!exist){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7013);
- }
- String uploadData = FileUtils.readFile(uploadJsonPath);
- JSONObject uploadJson = null;
- JSONArray array = null;
- if(uploadData!=null) {
- uploadJson = JSONObject.parseObject(uploadData);
- array = uploadJson.getJSONArray("upload");
- }
- if(array == null){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7013);
- }
- Map<String, String> map = new HashMap<>();
- JSONObject fileJson = null;
- String fileName = "";
- for(int i = 0, len = array.size(); i < len; i++) {
- fileJson = array.getJSONObject(i);
- fileName = fileJson.getString("file");
- //文件不存在抛出异常
- if (!new File(target + File.separator + "results" + File.separator + fileName)
- .exists()) {
- throw new Exception(
- target + File.separator + "results" + File.separator + fileName + "文件不存在");
- }
- //high文件夹
- if (fileJson.getIntValue("clazz") == 3) {
- map.put(target + File.separator + "results" + File.separator + fileName,
- imgViewPath + "pan/high/" + fileName.replace("high/", ""));
- continue;
- }
- //low文件夹
- if (fileJson.getIntValue("clazz") == 4) {
- map.put(target + File.separator + "results" + File.separator + fileName,
- imgViewPath + "pan/low/" + fileName.replace("low/", ""));
- continue;
- }
- //tiles文件夹,亚马逊没有裁剪图片api,不需要上传4k图
- if (fileJson.getIntValue("clazz") == 5) {
- map.put(target + File.separator + "results" + File.separator + fileName,
- imgViewPath + fileName);
- continue;
- }
- //tiles文件夹,亚马逊瓦片图
- if (fileJson.getIntValue("clazz") == 7) {
- map.put(target + File.separator + "results" + File.separator + fileName,
- imgViewPath + fileName);
- continue;
- }
- }
- //用户上传的全景图上传到ossresult目录
- String ossCachesImagesPath = String.format(UploadFilePath.scene_result_data_path, num) + "caches/images/";
- uploadFileList.stream().forEach(srcPath->{
- map.put(srcPath, srcPath.replace(targetImagesPath, ossCachesImagesPath));
- });
- if(map.size()>0) {
- fYunFileService.uploadMulFiles(bucket, map);
- }
- //更新数据库版本号
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- this.upgradeVersionAndImgVersionById(sceneEditInfo.getId());
- //更新scenejson缓存和oss文件版本号
- this.upgradeSceneJsonVersion(num, sceneEditInfo.getVersion() + 1, sceneEditInfo.getImgVersion() + 1, bucket);
- }
- @Override
- public ResultData downloadPanorama(FileParamVO param) throws Exception {
- String num = param.getNum();
- String fileName = param.getFileName();
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- //查询是否存在等待中的异步操作记录,如果存在,抛出业务异常,终止操作
- sceneAsynOperLogService.checkSceneAsynOper(num,null, SceneAsynModuleType.UPLOAD_DOWNLOAD.code() , SceneAsynFuncType.PANORAMIC_IMAGE.code());
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String path = scenePlusExt.getDataSource();
- String cachePath = String.format(ConstantFilePath.SCENE_CACHE, num);
- String imgCachePath = String.format(UploadFilePath.IMG_CACHES_PATH, num);
- String localImagesPath = String.format(ConstantFilePath.SCENE_CACHE_IMAGES, num);
- String cacheFormat = "downloads/scene/%s/caches/";
- String cacheImageFormat = "downloads/scene/%s/caches/images/";
- //判断全景图缓存是否存在,如果不存在,从计算目录中拷贝到缓存目录
- // this.cachePanorama(scenePlusExt.getDataSource(), num);
- //根据vision.txt获取到有效的全景图名称
- String ossVisionPath = String.format(UploadFilePath.IMG_VIEW_PATH, num) + "vision.txt";
- String visionPath = String.format(ConstantFilePath.SCENE_DATA_PATH_V4, num) + "vision.txt";
- fYunFileService.downloadFile(ossVisionPath, visionPath);
- List<String> panoramaImageList = SceneUtil.getPanoramaImageList(visionPath);
- if(CollUtil.isEmpty(panoramaImageList)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5063);
- }
- Map<String, Object> map = new HashMap<>();
- //标记是否是异步操作,默认是同步操作
- //如果入参文件名不为空,则是单个文件下载,不需要打包
- String ossResultPath = String.format(UploadFilePath.scene_result_data_path, num) + "caches/images/";
- if(StrUtil.isNotEmpty(fileName)){
- //如果是单张图片,直接提供oss url
- // if(!fYunFileService.fileExist(bucket, ossResultPath + fileName)){
- // throw new BusinessException(ErrorCode.FAILURE_CODE_5063);
- // }
- if(!panoramaImageList.contains(fileName)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5063);
- }
- String url = ossResultPath + fileName;
- String downloadName = fileName;
- map.put("asyn", CommonStatus.NO.code());
- map.put("fileUrl", url + "?t=" + System.currentTimeMillis());
- map.put("fileName", downloadName);
- return ResultData.ok(map);
- }else{
- //清除旧的下载记录
- sceneAsynOperLogService.cleanLog(num, SceneAsynModuleType.UPLOAD_DOWNLOAD.code(), SceneAsynFuncType.PANORAMIC_IMAGE.code(), SceneAsynOperType.DOWNLOAD.code());
- //开始异步执行下载全景图压缩包操作
- CompletableFuture.runAsync(() -> {
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- SceneAsynOperLog sceneAsynOperLog = new SceneAsynOperLog();
- sceneAsynOperLog.setNum(num);
- sceneAsynOperLog.setOperType(SceneAsynOperType.DOWNLOAD.code());
- sceneAsynOperLog.setModule(SceneAsynModuleType.UPLOAD_DOWNLOAD.code());
- sceneAsynOperLog.setFunc(SceneAsynFuncType.PANORAMIC_IMAGE.code());
- sceneAsynOperLog.setVersion(sceneEditInfo.getImgVersion());
- sceneAsynOperLogService.save(sceneAsynOperLog);
- try {
- //下载到本地目录
- FileUtil.del(localImagesPath);
- fYunFileService.downloadFileByCommand(bucket, localImagesPath, ossResultPath);
- //移除非必须文件
- List<String> fileNames = FileUtil.listFileNames(localImagesPath);
- fileNames.stream().forEach(name->{
- if(!panoramaImageList.contains(name)){
- FileUtil.del(localImagesPath + name);
- }
- });
- String downloadName = num + "_images.zip";
- long start = Calendar.getInstance().getTimeInMillis();
- //打包
- String zipPath = cachePath + downloadName;
- ZipUtil.zip(localImagesPath, zipPath);
- long end1 = Calendar.getInstance().getTimeInMillis();
- log.info("打包耗时:" + (end1 - start));
- //上传压缩包
- fYunFileService.uploadFileByCommand(bucket, zipPath, String.format(cacheFormat, num) + downloadName);
- String url = String.format(cacheFormat, num) + downloadName;
- long end2 = Calendar.getInstance().getTimeInMillis();
- log.info("上传耗时:" + (end2 - end1));
- //删除本地压缩包
- FileUtils.deleteFile(zipPath);
- //删除本地目录
- FileUtils.deleteDirectory(localImagesPath);
- sceneAsynOperLog.setState(CommonOperStatus.SUCCESS.code());
- sceneAsynOperLog.setUrl(url);
- }catch (Exception e){
- sceneAsynOperLog.setState(CommonOperStatus.FAILD.code());
- log.error("下载全景图压缩包失败,num:" + num, e);
- }
- sceneAsynOperLogService.saveOrUpdate(sceneAsynOperLog);
- });
- map.put("asyn", CommonStatus.YES.code());
- return ResultData.ok(map);
- }
- }
- private void cachePanorama(String dataSource, String num){
- String cachedImagesPath = String.format(ConstantFilePath.SCENE_CACHE_IMAGES, num);
- if(FileUtil.exist(cachedImagesPath) && CollUtil.isNotEmpty(FileUtil.listFileNames(cachedImagesPath))){
- return;
- }
- //将全景图缓存到缓存目录
- List<String> imagesList = FileUtil.listFileNames(dataSource + "/caches/images");
- //先清除旧的全景图
- cn.hutool.core.io.FileUtil.del(cachedImagesPath);
- String visionPath = dataSource + "/results/vision.txt";
- List<String> panoramaImageList = SceneUtil.getPanoramaImageList(visionPath);
- imagesList.stream().forEach(fileName -> {
- if (panoramaImageList.contains(fileName)) {
- String srcPath = dataSource + "/caches/images/" + fileName;
- String targetPath = cachedImagesPath + fileName;
- log.info("源文件:{}, 目标文件:{}", srcPath, targetPath);
- cn.hutool.core.io.FileUtil.copy(srcPath, targetPath, true);
- }
- });
- }
- @Override
- public void saveTagsToSceneEditInfo(String num, SceneEditInfo sceneEditInfo){
- //查询缓存是否包含热点数据
- String key = String.format(RedisKey.SCENE_HOT_DATA, num);
- Map<String, String> allTagsMap = redisUtil.hmget(key);
- boolean hashTags = false;
- for (Entry<String, String> tagMap : allTagsMap.entrySet()) {
- if(StrUtil.isEmpty(tagMap.getValue())){
- continue;
- }
- hashTags = true;
- break;
- }
- //更改热点状态
- sceneEditInfo.setTags(hashTags ? CommonStatus.YES.code() : CommonStatus.NO.code());
- //version 是空的代表 sceneEditInfo记录集不存在
- if(sceneEditInfo.getVersion() != null){
- sceneEditInfo.setVersion(sceneEditInfo.getVersion() + 1);
- }
- }
- @Override
- public ResultData saveVideoBox(FileNameAndDataParamVO param) throws Exception {
- JSONObject boxVideo = JSONObject.parseObject(param.getData());
- String sid = boxVideo.getString("sid");
- if(StrUtil.isEmpty(sid)){
- throw new BusinessException(ErrorCode.PARAM_REQUIRED);
- }
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //转换视频格式
- commonService.transferToFlv(param.getNum(), param.getFileName(), bucket);
- //生成boxVideos数据
- String boxVideos = this.createBoxVideos(param.getNum(), sid, boxVideo, sceneEditInfo, OperationType.ADDORUPDATE.code());
- //更新数据库
- this.updateBoxVideos(sceneEditInfo, scenePlus.getId(), boxVideos);
- return ResultData.ok();
- }
- @Override
- public ResultData deleteVideoBox(DeleteSidParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //根据sid移除json
- String boxVideos = this.createBoxVideos(param.getNum(), param.getSid(), null, sceneEditInfo, OperationType.DELETE.code());
- //写数据库
- this.updateBoxVideos(sceneEditInfo,scenePlus.getId(),boxVideos);
- return ResultData.ok();
- }
- @Override
- public ResultData saveBoxPhoto(BaseDataParamVO param) throws Exception {
- JSONObject boxPhoto = JSONObject.parseObject(param.getData());
- String sid = boxPhoto.getString("sid");
- if(StrUtil.isEmpty(sid)){
- throw new BusinessException(ServerCode.PARAM_REQUIRED, sid);
- }
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //生成boxVideos数据
- String boxPhotos = this.createBoxPhotos(param.getNum(), sid, boxPhoto, sceneEditInfo, OperationType.ADDORUPDATE.code());
- //更新数据库
- this.updateBoxPhotos(sceneEditInfo, boxPhotos);
- return ResultData.ok();
- }
- @Override
- public ResultData deleteBoxPhoto(DeleteSidParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus))
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //根据sid移除json
- String boxPhotos = this.createBoxPhotos(param.getNum(), param.getSid(), null, sceneEditInfo, OperationType.DELETE.code());
- //写数据库
- this.updateBoxPhotos(sceneEditInfo, boxPhotos);
- return ResultData.ok();
- }
- @Override
- public DownloadVO downloadBallScreenVideo(BallScreenVideoParamVO param) {
- String videoPath = String.format(UploadFilePath.VIDEOS_VIEW_PATH, param.getNum()) + param.getFileName();
- String url = ossUrlPrefix + videoPath + "?t=" + System.currentTimeMillis();
- return DownloadVO.builder()
- .fileName(param.getFileName())
- .url(url)
- .build();
- }
- @Override
- public ResultData uploadBallScreenVideo(String num, String fileName, MultipartFile file) throws Exception {
- //校验格式
- if(!fileName.endsWith(".mp4")){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7016);
- }
- String videosViewPath = String.format(UploadFilePath.VIDEOS_VIEW_PATH, num);
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(scenePlus == null){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String path = scenePlusExt.getDataSource();
- //校验文件名
- String videos = scenePlusExt.getVideos();
- if(StrUtil.isEmpty(videos)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7012);
- }
- JSONObject videosJson = JSON.parseObject(videos);
- JSONArray dataArr = videosJson.getJSONArray("data");
- boolean exists = false;
- for (Object o : dataArr) {
- JSONObject jsonObject = (JSONObject)o;
- if(jsonObject.getString("id").equals(fileName.replace(".mp4", ""))){
- exists = true;
- break;
- }
- }
- if(!exists){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7012);
- }
- if(path != null && !"".equals(path) && path.startsWith("http")){
- path = ConstantFilePath.BUILD_MODEL_PATH + File.separator + path.split("/")[path.split("/").length - 2];
- }
- String target = path + "_images";
- String filePath = target + File.separator + "extras/video" + File.separator + fileName;
- File targetFile = new File(filePath);
- if(!targetFile.getParentFile().exists()){
- targetFile.getParentFile().mkdirs();
- }
- //保存视频到本地
- file.transferTo(targetFile);
- File video = new File(target + File.separator + "extras/video");
- //如果文件夹或者文件不存在,跳出
- if(!video.exists() || video.listFiles() == null || video.listFiles().length == 0){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7009);
- }
- for(String videoName : video.list()){
- log.info("球幕视频名称:{}", videoName);
- fYunFileService.uploadFile(bucket, target + File.separator + "extras/video/" + videoName,videosViewPath + videoName);
- CreateObjUtil.mp4ToFlv(target + File.separator + "extras/video/" + videoName,
- target + File.separator + "extras/video/" + videoName.replace("mp4", "flv"));
- fYunFileService.uploadFile(bucket, target + File.separator + "extras/video/" + videoName.replace("mp4", "flv"),videosViewPath + videoName.replace("mp4", "flv"));
- //覆盖原始视频资源
- // FileUtils.copyFile(target + File.separator + "extras/video/" + videoName,
- // path + File.separator + "caches/videos/" + videoName, true);
- }
- FileUtils.deleteDirectory(target + File.separator + "extras/video/");
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- this.upgradeVersionById(sceneEditInfo.getId());
- //更新scenejson缓存和oss文件版本号
- this.upgradeSceneJsonVersion(num, sceneEditInfo.getVersion() + 1, null, bucket);
- return ResultData.ok();
- }
- @Override
- public void upgradeVersionToSceneJson(String num, String bucket) throws Exception{
- String key = String.format(RedisKey.SCENE_JSON, num);
- String objectName = String.format(ConstantFilePath.SCENE_VIEW_DATA_DATA_SCENEJSON, num);
- String objectContent = fYunFileService.getFileContent(bucket, objectName);
- SceneJsonBean sceneJsonBean = JSON.parseObject(objectContent, SceneJsonBean.class);
- sceneJsonBean.setVersion(sceneJsonBean.getVersion() +1);
- fYunFileService.uploadFile(bucket, JSON.toJSONString(sceneJsonBean).getBytes(), objectName);
- redisUtil.set(key, JSON.toJSONString(sceneJsonBean));
- }
- @Override
- public ResultData sceneSync(String num, String type, String floorPlanJson, String ajkJson, String cameraJson,
- MultipartFile[] files) throws Exception {
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- String lockKey = String.format(RedisLockKey.LOCK_SCENE_SYNC, num);
- Boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_2_HOUR);
- if(!lock){
- throw new BusinessException(ErrorCode.SYSTEM_BUSY);
- }
- try {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(scenePlus == null){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- //更新scene.json文件
- String strsceneInfos = FileUtils.readFile(ConstantFilePath.SCENE_PATH + "data" + File.separator + "data" + num + File.separator + "scene.json");
- if(strsceneInfos == null)
- new File(ConstantFilePath.SCENE_PATH + "data" + File.separator + "data" + num + File.separator + "scene.json").createNewFile();
- String path = scenePlusExt.getDataSource();// /mnt/data/0662c5389/831989883441512448/4898cab04f8c_202104141602356060/
- if(path != null && !"".equals(path) && path.startsWith("http")){
- path = ConstantFilePath.BUILD_MODEL_PATH + File.separator + path.split("/")[path.split("/").length - 2];
- }
- String target = path + "_ajk"; // /mnt/data/0662c5389/831989883441512448/4898cab04f8c_202104141602356060_ajk
- File editPath = new File(target);
- if(!editPath.exists()){
- editPath.mkdirs();
- }
- //创建文件夹软连接并且复制data.json和project.json
- if(new File(target + File.separator + "capture").exists()){
- new File(target + File.separator + "capture").delete();
- }
- if(new File(target + File.separator + "caches").exists()){
- //删除link
- new File(target + File.separator + "caches" + File.separator + "images").delete();
- //删除所有文件
- FileUtils.delAllFile(target + File.separator + "caches");
- }
- if(new File(target + File.separator + "results").exists()){
- FileUtils.delAllFile(target + File.separator + "results");
- }
- //创建文件夹,并link文件夹
- new File(target + File.separator + "caches").mkdirs();
- fYunFileService.downloadFileByCommand(target + File.separator + "capture", SceneUtil.getHomePath(path));
- // CreateObjUtil.createSoftConnection(path + File.separator + "capture", target + File.separator + "capture");
- if(new File(path + File.separator + "caches" + File.separator + "images").exists()){
- CreateObjUtil.createSoftConnection(path + File.separator + "caches" + File.separator + "images", target + File.separator + "caches" + File.separator + "images");
- }
- String ossResultPath = String.format(UploadFilePath.scene_result_data_path, num);
- fYunFileService.downloadFile(bucket, ossResultPath + "data.json", target + File.separator+"data.json");
- fYunFileService.downloadFile(bucket, ossResultPath + "project.json", target + File.separator+"project.json");
- // FileUtils.copyFile(path + File.separator + "data.json", target + File.separator+"data.json", true);
- // FileUtils.copyFile(path + File.separator + "project.json", target + File.separator+"project.json", true);
- //data.json增加extras为执行重建算法
- String project = FileUtils.readFile(target + File.separator+"project.json");
- if(project != null){
- JSONObject projectJson = JSONObject.parseObject(project);
- projectJson.put("parent", projectJson.get("uuid"));
- projectJson.put("uuid", UUID.randomUUID().toString());
- projectJson.put("time", System.currentTimeMillis());
- FileUtils.writeFile(path + File.separator + "project.json", projectJson.toString());
- }
- String data = FileUtils.readFile(target + File.separator+"data.json");
- if(data != null){
- JSONObject floorplanJson = new JSONObject();
- floorplanJson.put("has_floor_ajk_json", true);
- floorplanJson.put("has_vision_txt", true);
- floorplanJson.put("has_floorplan_json", true);
- JSONObject dataJson = JSONObject.parseObject(data);
- dataJson.put("extras", floorplanJson);
- //V5表示不需要生成high,low文件
- dataJson.put("skybox_type", "SKYBOX_V8");
- dataJson.put("split_type", "SPLIT_V10");
- FileUtils.writeFile(target + File.separator+"data.json", new String(dataJson.toString().getBytes(), "UTF-8"));
- }
- //文件上传的位置可以自定义
- log.info("画墙重建模型开始");
- File targetFile = new File(target + File.separator + "extras" + File.separator + "floor_ajk.json");
- if(!targetFile.getParentFile().exists()){
- targetFile.getParentFile().mkdirs();
- }
- if(targetFile.exists()){
- FileUtils.deleteFile(target + File.separator + "extras" + File.separator + "floor_ajk.json");
- }
- // 保存
- FileUtils.writeFile(target + File.separator + "extras" + File.separator + "floorplan.json", new String(floorPlanJson.getBytes(), "UTF-8"));
- FileUtils.writeFile(target + File.separator + "extras" + File.separator + "floor_ajk.json", new String(ajkJson.getBytes(), "UTF-8"));
- FileUtils.writeFile(ConstantFilePath.SCENE_PATH+"data"+File.separator+"data"+num + File.separator + "floor_ajk.json", new String(ajkJson.getBytes(), "UTF-8"));
- FileUtils.writeFile(target + File.separator + "extras" + File.separator + "vision.txt", new String(cameraJson.getBytes(), "UTF-8"));
- FileUtils.writeFile(ConstantFilePath.SCENE_PATH+"data"+File.separator+"data"+num + File.separator + "camera.json", new String(cameraJson.getBytes(), "UTF-8"));
- for(int i = 0; i < files.length; i ++){
- File cadImg = new File(target + File.separator + "extras" + File.separator + "Floorplans/" + files[i].getOriginalFilename());
- if(!cadImg.getParentFile().exists()){
- cadImg.getParentFile().mkdirs();
- }
- if(cadImg.exists())
- {
- cadImg.delete();
- }
- files[i].transferTo(cadImg);
- }
- //下载封面图
- FileUtils.downLoadFromUrl(scenePlusExt.getThumb() + "?t=" + System.currentTimeMillis(),
- "Cover.png", target + File.separator + "extras" + File.separator + "CoverImage");
- //转换成jpg
- FileUtils.pngToJpg(target + File.separator + "extras" + File.separator + "CoverImage/Cover.png",
- target + File.separator + "extras" + File.separator + "CoverImage/Cover.jpg");
- //安居客算法运行
- log.info("安居客算法:开始建模——"+num);
- CreateObjUtil.build3dModelOld(target , "1");
- String uploadJsonPath = target + File.separator + "results" + File.separator + "upload.json";
- log.info("uploadJsonPath=" + uploadJsonPath);
- //因为共享目录有延迟,这里循环检测算法是否计算完毕3次,每次隔五秒
- boolean exist = ComputerUtil.checkComputeCompleted(uploadJsonPath, maxCheckTimes, waitTime);
- if(!exist){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7017);
- }
- String zipPath = target + File.separator + "results/" + num + ".zip";
- new File(zipPath).delete();
- ZipUtil.zip(target + File.separator + "results/ajk/", zipPath);
- // String command = "bash /opt/ossutil/gzip.sh " + zipPath.replace(".zip", "") + " " + target + File.separator + "results/ajk/";
- // log.info("压缩文件:" + command);
- // CreateObjUtil.callshell(command);
- if(!new File(zipPath).exists()){
- return ResultData.error(ErrorCode.FAILURE_CODE_5043);
- }
- String fileMD5 = FileMd5Util.getFileMD5(new File(zipPath));
- fYunFileService.uploadFileByCommand(bucket, zipPath, "data_download/" + num + ".zip");
- SceneDataDownload sceneDataDownload = sceneDataDownloadService.findBySceneNum(num);
- if(sceneDataDownload == null){
- sceneDataDownload = new SceneDataDownload();
- sceneDataDownload.setSceneNum(num);
- sceneDataDownload.setDownloadPath(ossUrlPrefix + "data_download/" + num + ".zip");
- sceneDataDownload.setFileMd5(fileMD5);
- sceneDataDownloadService.save(sceneDataDownload);
- return ResultData.ok();
- }
- sceneDataDownload.setFileMd5(fileMD5);
- sceneDataDownload.setUpdateTime(Calendar.getInstance().getTime());
- sceneDataDownloadService.updateById(sceneDataDownload);
- }catch (Exception e){
- log.error("画墙重建模型失败...", e);
- throw new BusinessException(ErrorCode.FAILURE_CODE_5039);
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- return ResultData.ok();
- }
- @Override
- public ResultData checkKey(SceneCheckKeyParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- SceneJsonBean sceneJsonBean = null;
- String sceneJson = redisUtil.get(String.format(RedisKey.SCENE_JSON, param.getNum()));
- if(StrUtil.isEmpty(sceneJson)){
- sceneJson = fYunFileService.getFileContent(bucket,
- String.format(UploadFilePath.DATA_VIEW_PATH, param.getNum()) + "scene.json");
- }
- sceneJsonBean = JSON.parseObject(sceneJson, SceneJsonBean.class);
- if(!param.getPassword().equals(sceneJsonBean.getScenePassword())){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5021);
- }
- return ResultData.ok();
- }
- @Override
- public ResultData addMosaics(BaseDataParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //如果redis数据丢失,从本地文件中同步马赛克数据到redis
- this.syncMosaicFromFileToRedis(param.getNum());
- Map<String, String> map = new HashMap<>();
- JSONArray jsonArray = JSON.parseArray(param.getData());
- for (Object o : jsonArray) {
- JSONObject mosaic = (JSONObject) o;
- String panoId = mosaic.getString("panoId");
- if(StrUtil.isEmpty(panoId)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5012);
- }
- map.put(panoId, JSON.toJSONString(mosaic));
- }
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, param.getNum());
- redisUtil.hmset(key, map);
- //写入本地文件,作为备份
- this.writeMosaic(param.getNum());
- //更新数据库
- this.updateMosaicFlag(param.getNum());
- //更新版本号
- this.upgradeVersionById(sceneEditInfo.getId());
- return ResultData.ok();
- }
- private void updateMosaicFlag(String num){
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByScenePlusId(scenePlus.getId());
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, num);
- boolean flag = redisUtil.hasKey(key);
- if(flag){
- sceneEditInfoExt.setMosaic(Integer.valueOf(CommonStatus.YES.code()));
- }else{
- sceneEditInfoExt.setMosaic(Integer.valueOf(CommonStatus.NO.code()));
- }
- sceneEditInfoExtService.updateById(sceneEditInfoExt);
- }
- /**
- * <p>
- 保证马赛克数据安全性,当redis宕机导致热点数据丢失时,可以从文件中读取,恢复到redis
- **/
- private void syncMosaicFromFileToRedis(String num) throws Exception{
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, num);
- boolean exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- // String uuid = cn.hutool.core.lang.UUID.randomUUID().toString();
- String lockKey = String.format(RedisLockKey.LOCK_MOSAIC_DATA_SYNC, num);
- boolean lock = redisLockUtil.lock(lockKey, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- throw new BusinessException(ErrorCode.SYSTEM_BUSY);
- }
- try{
- exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String filePath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + "mosaic.json";
- String mosaicData = FileUtils.readUtf8String(filePath);
- if(StrUtil.isEmpty(mosaicData)){
- return;
- }
- JSONArray jsonArray = JSON.parseArray(mosaicData);
- if(CollUtil.isEmpty(jsonArray)){
- return;
- }
- Map<String, String> map = new HashMap<>();
- for (Object o : jsonArray) {
- JSONObject jo = (JSONObject)o;
- map.put(jo.getString("panoId"), jo.toJSONString());
- }
- redisUtil.hmset(key, map);
- }finally {
- redisLockUtil.unlockLua(lockKey);
- }
- }
- /**
- * <p>
- 保证马赛克数据安全性,当redis宕机导致热点数据丢失时,可以从文件中读取,恢复到redis
- **/
- private void writeMosaic(String num) throws Exception{
- String mosaicPath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + "mosaic.json";
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, num);
- Map<String, String> mosaicMap = redisUtil.hmget(key);
- if(CollUtil.isEmpty(mosaicMap)){
- FileUtils.deleteFile(mosaicPath);
- return;
- }
- List<String> mosaicList = Lists.newArrayList(mosaicMap.values());
- JSONArray jsonArr = new JSONArray();
- mosaicList.stream().forEach(mosaic->{
- jsonArr.add(JSONObject.parseObject(mosaic));
- });
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- String lockKey = String.format(RedisLockKey.LOCK_MOSAIC_JSON, num);
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- return;
- }
- try{
- FileUtils.writeFile(mosaicPath, jsonArr.toJSONString());
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- @Override
- public ResultData uploadLinkPan(String num, String sid, String fileName, MultipartFile file) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(num);
- if(scenePlus == null){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- String localImagesPath = String.format(ConstantFilePath.IMAGESBUFFER_FORMAT, num);
- String path = scenePlusExt.getDataSource();
- String target = localImagesPath + "panorama/" + sid;
- FileUtils.deleteDirectory(target);
- //文件写如本地磁盘
- String filePath = target + File.separator + "extras/images" + File.separator + fileName;
- File targetFile = new File(filePath);
- if(!targetFile.getParentFile().exists()){
- targetFile.getParentFile().mkdirs();
- }
- file.transferTo(targetFile);
- //调用算法切全景图
- String ossResultPath = String.format(UploadFilePath.scene_result_data_path, num);
- fYunFileService.downloadFile(bucket, ossResultPath + "data.json", target + File.separator+"data.json");
- fYunFileService.downloadFile(bucket, ossResultPath + "project.json", target + File.separator+"project.json");
- JSONObject visionJson = new JSONObject();
- JSONArray visionArray = new JSONArray();
- visionJson.put("uuid", sid);
- visionJson.put("group", 1);
- visionJson.put("subgroup", 0);
- visionArray.add(visionJson);
- JSONObject vision = new JSONObject();
- vision.put("sweepLocations", visionArray);
- cn.hutool.core.io.FileUtil.writeString(vision.toString(), target + "/extras" + File.separator + "vision.txt", StandardCharsets.UTF_8);
- //data.json增加extras为执行重建算法
- String type = "4k";
- String data = FileUtils.readFile(target + File.separator + "data.json");
- if(data != null){
- JSONObject floorplanJson = new JSONObject();
- floorplanJson.put("has_source_images", true);
- floorplanJson.put("has_vision_txt", true);
- JSONObject dataJson = JSONObject.parseObject(data);
- dataJson.put("extras", floorplanJson);
- dataJson.put("split_type", "SPLIT_V8");//替换全景图算法
- String skyboxType = "SKYBOX_V6";//默认4k minion
- if(SceneFrom.PRO.code().equals(scenePlusExt.getSceneFrom())){
- skyboxType = "SKYBOX_V7";
- type = "2k";
- }
- if(scenePlusExt.getSceneScheme() == 3){
- if("4k".equals(scenePlusExt.getSceneResolution())){
- skyboxType = "SKYBOX_V14";
- }else{
- skyboxType = "SKYBOX_V13";
- }
- }
- dataJson.put("skybox_type", skyboxType);
- cn.hutool.core.io.FileUtil.writeString(dataJson.toString(), target + File.separator+"data.json", StandardCharsets.UTF_8);
- }
- //创建文件夹软连接并且复制data.json和project.json
- String capturePath = target + File.separator + "capture";
- String resultPath = target + File.separator + "results";
- log.info("场景关联上传全景图:capturePath={}", capturePath);
- log.info("场景关联上传全景图:resultPath={}", resultPath);
- if(cn.hutool.core.io.FileUtil.exist(capturePath)){
- cn.hutool.core.io.FileUtil.del(capturePath);
- }
- if(cn.hutool.core.io.FileUtil.exist(resultPath)){
- cn.hutool.core.io.FileUtil.del(resultPath);
- }
- //下载data.fdage
- fYunFileService.downloadFile(ConstantFilePath.OSS_PREFIX + path.replace(ConstantFilePath.BUILD_MODEL_PATH, "") + "/data.fdage", capturePath + "/data.fdage");
- CreateObjUtil.build3dModel(target , "1");
- //读取upload文件,获取需要上传的文件
- JSONArray array = ComputerUtil.getUploadArray(resultPath + "/upload.json", this.maxCheckTimes, this.waitTime);
- Map<String, String> map = new HashMap<>();
- JSONObject fileJson;
- String uploadFile, uploadFilePath;
- String imgEditPath = String.format(UploadFilePath.IMG_EDIT_PATH, num);
- for(int i = 0, len = array.size(); i < len; i++){
- fileJson = array.getJSONObject(i);
- uploadFile = fileJson.getString("file");
- uploadFilePath = resultPath +File.separator + uploadFile;
- //文件不存在抛出异常
- if(!cn.hutool.core.io.FileUtil.exist(uploadFilePath)){
- throw new Exception(uploadFilePath + "文件不存在");
- }
- Integer clazz = fileJson.getIntValue("clazz");
- if(Objects.isNull(clazz)){
- continue;
- }
- if(clazz == 4 || clazz == 5 || clazz == 7){
- map.put(uploadFilePath, imgEditPath + "panorama/" + sid + File.separator + uploadFile);
- }
- }
- //上传全景图
- map.put(filePath, imgEditPath + "panorama/" + sid + "/high/" + fileName);
- fYunFileService.uploadMulFiles(bucket, map);
- Map<String, String> result = new HashMap<>();
- result.put("type", type);
- return ResultData.ok(result);
- }
- @Override
- public ResultData saveLinkPan(SaveLinkPanParamVO param) throws Exception {
- String num = param.getNum();
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- //添加场景关联数据
- this.addOrUpdateLinPan(num, param.getLinkPans());
- //添加场景关联图标
- this.addOrUpdateLinkPanStyles(num, param.getStyles());
- //场景关联数据备份到本地
- this.writeLinkScene(num);
- //更新场景关联标识、升级版本号
- this.setLinkScenesAndUpgradeVersion(scenePlus.getId(), num);
- return ResultData.ok();
- }
- @Override
- public ResultData deleteStyles(DeleteStylesParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if (scenePlus == null)
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- List<String> sidList = param.getSidList();
- this.syncLinkPanStylesFromFileToRedis(param.getNum());
- String key = String.format(RedisKey.SCENE_LINKPAN_STYLES, param.getNum());
- List<String> deleteList = redisUtil.hMultiGet(key, sidList);
- redisUtil.hdel(key, sidList.toArray());
- //写入本地文件,作为备份
- this.writeLinkScene(param.getNum());
- //删除oss文件
- List<String> deleteFileList = deleteList.stream().map(str -> {
- JSONObject parse = JSON.parseObject(str);
- return parse.getString("url");
- }).collect(Collectors.toList());
- sceneUploadService.delete(
- DeleteFileParamVO.builder()
- .num(param.getNum())
- .fileNames(deleteFileList)
- .bizType(FileBizType.LINK_STYLE.code()).build());
- return ResultData.ok();
- }
- @Override
- public ResultData deleteLinkPan(DeleteLinkPanParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if (scenePlus == null)
- return ResultData.error(ErrorCode.FAILURE_CODE_5005);
- ScenePlusExt scenePlusExt = scenePlusExtService.getScenePlusExtByPlusId(scenePlus.getId());
- String bucket = scenePlusExt.getYunFileBucket();
- List<String> deleteSidList = param.getSidList();
- //处理删除状态数据
- this.deletelinkPanData(param.getNum(), deleteSidList, bucket);
- //写入本地文件,作为备份
- this.writeLinkScene(param.getNum());
- //更新场景关联标识、升级版本号
- this.setLinkScenesAndUpgradeVersion(scenePlus.getId(), param.getNum());
- return ResultData.ok();
- }
- private void deletelinkPanData(String num, List<String> deleteSidList, String bucket) throws Exception {
- if(CollUtil.isEmpty(deleteSidList)){
- return;
- }
- this.syncLinPanFromFileToRedis(num);
- //从redis中加载热点数据
- String key = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- List<String> deletDataList = redisUtil.hMultiGet(key, deleteSidList);
- if(CollUtil.isEmpty(deletDataList))
- return;
- List<String> thumbNameList = deleteSidList.stream().map(sid -> {
- String linkPan = redisUtil.hget(key, sid);
- JSONObject linkPanObj = JSON.parseObject(linkPan);
- return FileUtil.getPrefix(linkPanObj.getString("thumb"));
- }).collect(Collectors.toList());
- //从redis中移除热点数据
- redisUtil.hdel(key, deleteSidList.toArray());
- //删除oss文件
- String imgEditPath = String.format(UploadFilePath.IMG_EDIT_PATH, num);
- thumbNameList.stream().forEach(thumbName->{
- fYunFileService.deleteFolder(bucket, imgEditPath + "panorama/" + thumbName);
- });
- }
- @Override
- public ResultData listLinkPan(String num) throws Exception {
- this.syncLinPanFromFileToRedis(num);
- this.syncLinkPanStylesFromFileToRedis(num);
- JSONObject result = new JSONObject();
- //查询场景关联数据
- String key = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- Map<String, String> allTagsMap = redisUtil.hmget(key);
- List<JSONObject> tags = Lists.newArrayList();
- List<TagBean> tagBeanList = new ArrayList<>();
- if(CollUtil.isNotEmpty(allTagsMap)){
- allTagsMap.entrySet().stream().forEach(entry -> {
- JSONObject jsonObject = JSON.parseObject(entry.getValue());
- tagBeanList.add(
- TagBean.builder()
- .createTime(jsonObject.getLong("createTime"))
- .tag(jsonObject).build());
- });
- //按创建时间倒叙排序
- tagBeanList.sort(Comparator.comparingLong(TagBean::getCreateTime).reversed());
- //移除createTime字段
- tags = tagBeanList.stream().map(tagBean -> {
- JSONObject tag = tagBean.getTag();
- tag.remove("createTime");
- return tag;
- }).collect(Collectors.toList());
- }
- result.put("tags", tags);
- //封装styles数据
- List<JSONObject> styles = Lists.newArrayList();
- key = String.format(RedisKey.SCENE_LINKPAN_STYLES, num);
- Map<String, String> styleMap = redisUtil.hmget(key);
- if(CollUtil.isNotEmpty(styleMap)) {
- for (String style : styleMap.values()) {
- styles.add(JSON.parseObject(style));
- }
- }
- //图标按写入时间排序
- styles = this.sortStyles(styles);
- result.put("styles", styles);
- return ResultData.ok(result);
- }
- private List<JSONObject> sortStyles(List<JSONObject> styles){
- if(CollUtil.isEmpty(styles)){
- return null;
- }
- //统计使用频次
- List<StyleBean> styleBeans = Lists.newArrayList();
- for (JSONObject style : styles) {
- Long createTime = style.getLong("createTime");
- createTime = Objects.isNull(createTime) ? Calendar.getInstance().getTimeInMillis() : createTime;
- style.remove("createTime");
- styleBeans.add(
- StyleBean.builder().style(style)
- .createTime(createTime).build());
- }
- //排序
- List<JSONObject> styleList = Lists.newArrayList();
- if(CollUtil.isNotEmpty(styleBeans)){
- styleList = styleBeans.stream().sorted(Comparator.comparing(StyleBean::getCreateTime).reversed())
- .map(item -> {
- return item.getStyle();
- }).collect(Collectors.toList());
- }
- return styleList;
- }
- private void setLinkScenesAndUpgradeVersion(Long scenePlusId, String num){
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlusId);
- //查询缓存是否有场景关联数据
- String key = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- Map<String, String> allTagsMap = redisUtil.hmget(key);
- boolean hashTags = false;
- for (Entry<String, String> tagMap : allTagsMap.entrySet()) {
- if(StrUtil.isEmpty(tagMap.getValue())){
- continue;
- }
- hashTags = true;
- break;
- }
- //更新linkscenes字段
- sceneEditInfoExtService.update(
- new LambdaUpdateWrapper<SceneEditInfoExt>()
- .set(SceneEditInfoExt::getLinks, hashTags ? CommonStatus.YES.code() : CommonStatus.NO.code())
- .eq(SceneEditInfoExt::getEditInfoId, sceneEditInfo.getId()));
- //更新场景版本
- this.update(new LambdaUpdateWrapper<SceneEditInfo>()
- .setSql("version=version+" + 1)
- .setSql("link_version=link_version+" + 1)
- .eq(SceneEditInfo::getId, sceneEditInfo.getId()));
- }
- /**
- * <p>
- 热点数据保存
- * </p>
- * @author dengsixing
- * @date 2022/3/3
- **/
- private void writeLinkScene(String num) throws Exception{
- String dataKey = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- Map<String, String> tagMap = redisUtil.hmget(dataKey);
- List<String> tagList = Lists.newArrayList();
- tagMap.entrySet().stream().forEach(entry->{
- if(StrUtil.isNotEmpty(entry.getValue())){
- tagList.add(entry.getValue());
- }
- });
- JSONObject jsonObject = new JSONObject();
- JSONArray tagJsonArr = new JSONArray();
- if(CollUtil.isNotEmpty(tagList)){
- tagList.stream().forEach(linkPan->{
- tagJsonArr.add(JSONObject.parseObject(linkPan));
- });
- }
- jsonObject.put("tags", tagJsonArr);
- String stylesKey = String.format(RedisKey.SCENE_LINKPAN_STYLES, num);
- Map<String, String> styleMap = redisUtil.hmget(stylesKey);
- List<JSONObject> styleList = Lists.newArrayList();
- if(CollUtil.isNotEmpty(styleMap)){
- styleMap.values().stream().forEach(style->{
- styleList.add(JSONObject.parseObject(style));
- });
- }
- jsonObject.put("styles", styleList);
- String linkScenePath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + "links.json";
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- String lockKey = String.format(RedisLockKey.LOCK_LINK_SCENE_JSON, num);
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- return;
- }
- try{
- cn.hutool.core.io.FileUtil.writeUtf8String(jsonObject.toJSONString(), linkScenePath);
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- private void addOrUpdateLinkPanStyles(String num, List<JSONObject> styles) throws Exception{
- this.syncLinkPanStylesFromFileToRedis(num);
- if(CollUtil.isEmpty(styles)){
- return;
- }
- long time = Calendar.getInstance().getTimeInMillis();
- Map<String, String> styleMap = new HashMap<>();
- AtomicInteger index = new AtomicInteger();
- styles.stream().forEach(style->{
- String id = style.getString("sid");
- style.put("createTime", time + index.getAndIncrement());
- styleMap.put(id, style.toJSONString());
- });
- String key = String.format(RedisKey.SCENE_LINKPAN_STYLES, num);
- redisUtil.hmset(key, styleMap);
- }
- /**
- * <p>
- 保证icons数据安全性,当redis宕机导致icons数据丢失时,可以从文件中读取,恢复到redis
- * </p>
- * @author dengsixing
- * @date 2022/3/3
- **/
- private void syncLinkPanStylesFromFileToRedis(String num) throws Exception{
- String key = String.format(RedisKey.SCENE_LINKPAN_STYLES, num);
- boolean exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String lockKey = String.format(RedisLockKey.LOCK_LINKPAN_STYLES_SYNC, num);
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- throw new BusinessException(ErrorCode.SYSTEM_BUSY);
- }
- try{
- exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String linkSceneFilePath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num);
- String linkSceneData = FileUtils.readUtf8String(linkSceneFilePath + "links.json");
- if(StrUtil.isEmpty(linkSceneData)){
- return;
- }
- JSONObject jsonObject = JSON.parseObject(linkSceneData);
- JSONArray stylesArr = jsonObject.getJSONArray("styles");
- if(CollUtil.isEmpty(stylesArr)){
- return;
- }
- Map<String, String> styleMap = new HashMap<>();
- for (Object style : stylesArr) {
- JSONObject styleObj = (JSONObject)style;
- String id = styleObj.getString("sid");
- styleMap.put(id, styleObj.toJSONString());
- }
- redisUtil.hmset(key, styleMap);
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- private void addOrUpdateLinPan(String num, List<JSONObject> linkPanList) throws Exception{
- Map<String, String> addOrUpdateMap = new HashMap<>();
- int i = 0;
- for (JSONObject jsonObject : linkPanList) {
- jsonObject.put("createTime", Calendar.getInstance().getTimeInMillis() + i++);
- addOrUpdateMap.put(jsonObject.getString("sid"), jsonObject.toJSONString());
- }
- this.syncLinPanFromFileToRedis(num);
- //处理新增和修改数据
- this.addOrUpdateLinkPanHandler(num, addOrUpdateMap);
- }
- /**
- * <p>
- 保证热点数据安全性,当redis宕机导致热点数据丢失时,可以从文件中读取,恢复到redis
- * </p>
- * @author dengsixing
- * @date 2022/3/3
- **/
- private void syncLinPanFromFileToRedis(String num) throws Exception{
- String key = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- boolean exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String lockKey = String.format(RedisLockKey.LOCK_LINKPAN_DATA_SYNC, num);
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- throw new BusinessException(ErrorCode.SYSTEM_BUSY);
- }
- try{
- exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String linkSceneFilePath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num);
- String linkSceneData = FileUtils.readUtf8String(linkSceneFilePath + "links.json");
- if(StrUtil.isEmpty(linkSceneData)){
- return;
- }
- JSONObject jsonObject = JSON.parseObject(linkSceneData);
- JSONArray tagsArr = jsonObject.getJSONArray("tags");
- if(CollUtil.isEmpty(tagsArr)){
- return;
- }
- Map<String, String> map = new HashMap<>();
- for (Object o : tagsArr) {
- JSONObject jo = (JSONObject)o;
- map.put(jo.getString("sid"), jo.toJSONString());
- }
- redisUtil.hmset(key, map);
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- private void addOrUpdateLinkPanHandler(String num, Map<String, String> addOrUpdateMap){
- if(CollUtil.isEmpty(addOrUpdateMap))
- return;
- //数据验证,新增、修改状态,linkPan不能为空
- for (String sid : addOrUpdateMap.keySet()) {
- String linkPan = addOrUpdateMap.get(sid);
- if(StrUtil.isEmpty(linkPan)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_7022);
- }
- }
- //批量写入缓存
- String key = String.format(RedisKey.SCENE_LINKPAN_DATA, num);
- redisUtil.hmset(key, addOrUpdateMap);
- }
- private void updateBoxVideos(SceneEditInfo sceneEditInfo, Long scenePlusId, String boxVideos){
- if(Objects.isNull(sceneEditInfo)){
- sceneEditInfo = new SceneEditInfo();
- sceneEditInfo.setScenePlusId(scenePlusId);
- sceneEditInfo.setBoxVideos(boxVideos);
- this.save(sceneEditInfo);
- }else{
- this.update(new UpdateWrapper<SceneEditInfo>()
- .setSql("version = version + 1")
- .set("box_videos", boxVideos)
- .eq("id", sceneEditInfo.getId()));
- }
- }
- private void updateBoxPhotos(SceneEditInfo sceneEditInfo, String boxPhotos){
- this.update(new LambdaUpdateWrapper<SceneEditInfo>()
- .set(SceneEditInfo::getBoxPhotos, boxPhotos)
- .setSql("version = version + 1")
- .eq(SceneEditInfo::getId, sceneEditInfo.getId()));
- }
- private String createBoxVideos(
- String num, String sid, JSONObject boxVideo,
- SceneEditInfo sceneEditInfo, int type) throws Exception{
- String boxVideos = null;
- if(sceneEditInfo != null){
- boxVideos = sceneEditInfo.getBoxVideos();
- }
- JSONArray boxVideosJson = null;
- if (StrUtil.isNotEmpty(boxVideos)) {
- boxVideosJson = JSONArray.parseArray(boxVideos);
- }else {
- boxVideosJson = new JSONArray();
- }
- if(boxVideosJson.size() > 0){
- int i = 1;
- long timeInMillis = Calendar.getInstance().getTimeInMillis();
- for (Object o : boxVideosJson) {
- JSONObject item = (JSONObject)o;
- if(Objects.nonNull(item.getLong("createTime"))){
- continue;
- }
- item.put("createTime", timeInMillis - (i++));
- }
- }
- String result = null;
- //删除
- if(type == OperationType.DELETE.code()){
- Set<String> deleteVidoeFile = new HashSet<>();
- Set<String> deletePicFile = new HashSet<>();
- if(boxVideosJson.size() == 0)
- return null;
- for(int i=0;i<boxVideosJson.size();++i){
- JSONObject ele = boxVideosJson.getJSONObject(i);
- if(ele.getString("sid").equals(sid)){
- String poster = ele.getString("poster");
- if(StrUtil.isNotEmpty(poster))
- deletePicFile.add(poster);
- String url = ele.getString("url");
- if(StrUtil.isNotEmpty(url)){
- deleteVidoeFile.add(url);
- deleteVidoeFile.add(url.replace(".mp4",".flv"));
- }
- boxVideosJson.remove(i);
- }
- }
- //删除资源文件
- if(CollUtil.isNotEmpty(deleteVidoeFile))
- sceneUploadService.delete(
- DeleteFileParamVO.builder().num(num)
- .bizType(FileBizType.BOX_VIDEO.code())
- .fileNames(new ArrayList<>(deleteVidoeFile)).build());
- //删除资源文件
- if(CollUtil.isNotEmpty(deleteVidoeFile))
- sceneUploadService.delete(
- DeleteFileParamVO.builder().num(num)
- .bizType(FileBizType.BOX_POSTER.code())
- .fileNames(new ArrayList<>(deletePicFile)).build());
- }else{
- boxVideo.put("createTime", Calendar.getInstance().getTimeInMillis());
- //更新
- boolean exist = false;
- for(int i=0;i<boxVideosJson.size();++i){
- JSONObject ele = boxVideosJson.getJSONObject(i);
- if(ele.getString("sid").equals(sid)){
- boxVideosJson.set(i, boxVideo);
- exist = true;
- }
- }
- //新增
- if(!exist){
- boxVideosJson.add(boxVideo);
- }
- boxVideosJson.clear();
- boxVideosJson.add(boxVideo);
- }
- if(boxVideosJson.size() != 0){
- result = boxVideosJson.toJSONString();
- }
- return result;
- }
- private String createBoxPhotos(String num, String sid, JSONObject boxPhoto, SceneEditInfo sceneEditInfo, int type) throws Exception{
- String boxPhotos = null;
- if(sceneEditInfo != null){
- boxPhotos = sceneEditInfo.getBoxPhotos();
- }
- JSONArray boxPhotosJson = null;
- if (StrUtil.isNotEmpty(boxPhotos)) {
- boxPhotosJson = JSONArray.parseArray(boxPhotos);
- }else {
- boxPhotosJson = new JSONArray();
- }
- String result = null;
- //删除
- if(type == OperationType.DELETE.code()){
- Set<String> deleteFile = new HashSet<>();
- if(boxPhotosJson.size() == 0)
- return null;
- for(int i=0;i<boxPhotosJson.size();++i){
- JSONObject ele = boxPhotosJson.getJSONObject(i);
- if(ele.getString("sid").equals(sid)){
- String poster = ele.getString("poster");
- if(StrUtil.isNotEmpty(poster))
- deleteFile.add(poster);
- String url = ele.getString("url");
- if(StrUtil.isNotEmpty(url))
- deleteFile.add(url);
- boxPhotosJson.remove(i);
- }
- }
- //删除资源文件
- if(CollUtil.isNotEmpty(deleteFile))
- sceneUploadService.delete(
- DeleteFileParamVO.builder().num(num)
- .bizType(FileBizType.BOX_VIDEO.code())
- .fileNames(new ArrayList<>(deleteFile)).build());
- }else{
- //更新
- boolean exist = false;
- for(int i=0;i<boxPhotosJson.size();++i){
- JSONObject ele = boxPhotosJson.getJSONObject(i);
- if(ele.getString("sid").equals(sid)){
- boxPhoto.put("createTime", ele.getLong("createTime"));
- boxPhotosJson.set(i, boxPhoto);
- exist = true;
- }
- }
- //新增
- if(!exist){
- boxPhoto.put("createTime", Calendar.getInstance().getTimeInMillis());
- boxPhotosJson.add(boxPhoto);
- }
- }
- if(boxPhotosJson.size() != 0){
- List<BoxPhotoBean> list = Lists.newArrayList();
- for (Object o : boxPhotosJson) {
- JSONObject jsonObject = (JSONObject)o;
- list.add(BoxPhotoBean.builder().createTime(jsonObject.getLong("createTime")).boxPhoto(jsonObject).build());
- }
- //按创建时间倒叙排序
- list.sort(Comparator.comparingLong(BoxPhotoBean::getCreateTime).reversed());
- // list转JSONArray
- JSONArray array = new JSONArray();
- list.stream().forEach(bean->{
- array.add(bean.getBoxPhoto());
- });
- result = array.toJSONString();
- }
- return result;
- }
- @Override
- public ResultData deleteMosaics(DeleteMosaicParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- SceneEditInfo sceneEditInfo = this.getByScenePlusId(scenePlus.getId());
- //如果redis数据丢失,从本地文件中同步马赛克数据到redis
- this.syncMosaicFromFileToRedis(param.getNum());
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, param.getNum());
- redisUtil.hdel(key, param.getPanoIdList().toArray());
- //写入本地文件,作为备份
- this.writeMosaic(param.getNum());
- //更新数据库
- this.updateMosaicFlag(param.getNum());
- //更新版本号
- this.upgradeVersionById(sceneEditInfo.getId());
- return ResultData.ok();
- }
- @Override
- public List<JSONObject> getMosaicList(String num) throws Exception {
- //如果redis数据丢失,从本地文件中同步马赛克数据到redis
- this.syncMosaicFromFileToRedis(num);
- String key = String.format(RedisKey.SCENE_MOSAIC_DATA, num);
- Map<String, String> map = redisUtil.hmget(key);
- if(CollUtil.isEmpty(map)){
- ResultData.ok(new String[0]);
- }
- return map.values().stream()
- .map(mosaic-> JSON.parseObject(mosaic))
- .collect(Collectors.toList());
- }
- @Override
- public ResultData addWaterMark(BaseFileParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService
- .getByScenePlusId(scenePlus.getId());
- sceneEditInfoExt.setWaterMark(param.getFileName());
- sceneEditInfoExtService.updateById(sceneEditInfoExt);
- return ResultData.ok();
- }
- @Override
- public ResultData deleteWaterMark(BaseFileParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- sceneUploadService.delete(
- DeleteFileParamVO.builder()
- .num(param.getNum())
- .fileNames(Lists.newArrayList(param.getFileName()))
- .bizType(FileBizType.WATERMARK.code()).build());
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByScenePlusId(scenePlus.getId());
- sceneEditInfoExt.setWaterMark("");
- sceneEditInfoExtService.updateById(sceneEditInfoExt);
- return ResultData.ok();
- }
- @Override
- public ResultData saveFilter(SaveFiltersParamVO param) throws Exception {
- ScenePlus scenePlus = scenePlusService.getScenePlusByNum(param.getNum());
- if(Objects.isNull(scenePlus)){
- throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
- }
- String key = String.format(RedisKey.SCENE_filter_DATA, param.getNum());
- redisUtil.del(key);//前端将全量数据传过来,所以这里先清空历史数据,然后保存前端数据即可
- JSONArray filterArr = JSON.parseArray(param.getData());
- int filters = CommonStatus.YES.code();
- //如果页面选择恢复默认,filters字段值为否
- if(Objects.nonNull(param.getReset()) && param.getReset() == CommonStatus.YES.code().intValue()){
- filters = CommonStatus.NO.code();
- }else{
- if(CollUtil.isNotEmpty(filterArr)){
- List<String> filterList = filterArr.stream().map(item->JSON.toJSONString(item)).collect(Collectors.toList());
- redisUtil.lRightPushAll(key, filterList);
- }else{
- filters = CommonStatus.NO.code();
- }
- }
- //写本地文件,作为备份
- this.writeFilter(param.getNum());
- //更新数据库
- SceneEditInfoExt sceneEditInfoExt = sceneEditInfoExtService.getByScenePlusId(scenePlus.getId());
- sceneEditInfoExt.setFilters(filters);
- sceneEditInfoExtService.updateById(sceneEditInfoExt);
- //更新版本号
- this.upgradeVersionById(sceneEditInfoExt.getEditInfoId());
- return ResultData.ok();
- }
- private void writeFilter(String num) throws Exception{
- String filterPath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num) + "filter.json";
- String key = String.format(RedisKey.SCENE_filter_DATA, num);
- List<String> filters = redisUtil.lGet(key, 0, -1);
- if(CollUtil.isEmpty(filters)){
- FileUtils.deleteFile(filterPath);
- return;
- }
- String lockKey = String.format(RedisLockKey.LOCK_filter_JSON, num);
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- return;
- }
- try{
- FileUtils.writeFile(filterPath, JSON.toJSONString(filters));
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- private void syncFiltersFromFileToRedis(String num) throws Exception{
- String key = String.format(RedisKey.SCENE_filter_DATA, num);
- boolean exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String lockKey = String.format(RedisLockKey.LOCK_FILTER_DATA_SYNC, num);
- String lockVal = cn.hutool.core.lang.UUID.randomUUID().toString();
- boolean lock = redisLockUtil.lock(lockKey, lockVal, RedisKey.EXPIRE_TIME_1_MINUTE);
- if(!lock){
- throw new BusinessException(ErrorCode.SYSTEM_BUSY);
- }
- try{
- exist = redisUtil.hasKey(key);
- if(exist){
- return;
- }
- String filePath = String.format(ConstantFilePath.SCENE_USER_PATH_V4, num);
- String filterData = FileUtils.readUtf8String(filePath + "filter.json");
- if(StrUtil.isEmpty(filterData)){
- return;
- }
- JSONArray jsonArray = JSON.parseArray(filterData);
- if(CollUtil.isEmpty(jsonArray)){
- return;
- }
- redisUtil.lRightPushAll(key, jsonArray.stream().collect(Collectors.toList()));
- }finally {
- redisLockUtil.unlockLua(lockKey, lockVal);
- }
- }
- @Override
- public ResultData listFilter(BaseSceneParamVO param) throws Exception {
- //同步数据
- this.syncFiltersFromFileToRedis(param.getNum());
- //查询redis
- String key = String.format(RedisKey.SCENE_filter_DATA, param.getNum());
- List<String> list = redisUtil.lGet(key, 0, -1);
- List<JSONObject> collect =
- list.stream().map(str -> JSON.parseObject(str)).collect(Collectors.toList());
- return ResultData.ok(collect);
- }
- }
|