|
@ -1,19 +1,29 @@ |
|
|
package awesome.group.game.service; |
|
|
package awesome.group.game.service; |
|
|
|
|
|
|
|
|
import awesome.group.game.dao.bean.MatrixAdmin; |
|
|
import awesome.group.game.dao.bean.*; |
|
|
import awesome.group.game.dao.bean.MatrixAdminDevice; |
|
|
import awesome.group.game.dao.mapper.*; |
|
|
import awesome.group.game.dao.bean.MatrixApp; |
|
|
import awesome.group.game.service.bo.DateIncome; |
|
|
import awesome.group.game.dao.mapper.MatrixAdminDeviceMapper; |
|
|
import awesome.group.game.service.bo.IncomeQuery; |
|
|
import awesome.group.game.dao.mapper.MatrixAdminMapper; |
|
|
import awesome.group.game.service.bo.OverviewBo; |
|
|
import awesome.group.game.dao.mapper.MatrixAppMapper; |
|
|
import awesome.group.game.service.common.exception.PaganiException; |
|
|
|
|
|
import awesome.group.game.service.common.exception.PaganiExceptionCode; |
|
|
|
|
|
import awesome.group.game.service.util.DateUtil; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
|
import org.springframework.scheduling.annotation.Scheduled; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.util.Assert; |
|
|
import org.springframework.util.Assert; |
|
|
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
import org.springframework.util.StringUtils; |
|
|
import org.springframework.util.StringUtils; |
|
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
import java.sql.Timestamp; |
|
|
import java.util.List; |
|
|
import java.text.ParseException; |
|
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
|
import java.time.LocalDate; |
|
|
|
|
|
import java.time.YearMonth; |
|
|
|
|
|
import java.util.*; |
|
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
@Service |
|
|
@Service |
|
|
public class AdminDeviceService { |
|
|
public class AdminDeviceService { |
|
@ -29,6 +39,18 @@ public class AdminDeviceService { |
|
|
@Autowired |
|
|
@Autowired |
|
|
private MatrixAppMapper appMapper; |
|
|
private MatrixAppMapper appMapper; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private MatrixAdvAggregationSubMapper subMapper; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private AggregationSubService aggregationSubService; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private MatrixAdvRecordMapper advRecordMapper; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private AdminService adminService; |
|
|
|
|
|
|
|
|
public Integer getAdminId(String deviceId) { |
|
|
public Integer getAdminId(String deviceId) { |
|
|
MatrixAdminDevice device = mapper.selectByDeviceId(deviceId); |
|
|
MatrixAdminDevice device = mapper.selectByDeviceId(deviceId); |
|
|
if (device == null || device.getStatus() == STATUS_OFFLINE) { |
|
|
if (device == null || device.getStatus() == STATUS_OFFLINE) { |
|
@ -37,7 +59,7 @@ public class AdminDeviceService { |
|
|
return device.getAdminId(); |
|
|
return device.getAdminId(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public List<MatrixAdminDevice> getDeviceList(Integer adminId, String appCode ) { |
|
|
public List<MatrixAdminDevice> getDeviceList(Integer adminId, String appCode) { |
|
|
MatrixApp app = appMapper.queryByCode(appCode); |
|
|
MatrixApp app = appMapper.queryByCode(appCode); |
|
|
Assert.isTrue(app != null, "非法请求"); |
|
|
Assert.isTrue(app != null, "非法请求"); |
|
|
LambdaQueryWrapper<MatrixAdminDevice> queryWrapper = new LambdaQueryWrapper<>(); |
|
|
LambdaQueryWrapper<MatrixAdminDevice> queryWrapper = new LambdaQueryWrapper<>(); |
|
@ -52,7 +74,7 @@ public class AdminDeviceService { |
|
|
|
|
|
|
|
|
public String bind(String deviceId, String appCode, String adminName) { |
|
|
public String bind(String deviceId, String appCode, String adminName) { |
|
|
MatrixAdminDevice device = mapper.selectByDeviceId(deviceId); |
|
|
MatrixAdminDevice device = mapper.selectByDeviceId(deviceId); |
|
|
if(device != null){ |
|
|
if (device != null) { |
|
|
return "设备已绑定"; |
|
|
return "设备已绑定"; |
|
|
} |
|
|
} |
|
|
MatrixAdmin admin = adminMapper.query(adminName); |
|
|
MatrixAdmin admin = adminMapper.query(adminName); |
|
@ -63,8 +85,8 @@ public class AdminDeviceService { |
|
|
if (app == null) { |
|
|
if (app == null) { |
|
|
return "应用不存在"; |
|
|
return "应用不存在"; |
|
|
} |
|
|
} |
|
|
if(!StringUtils.hasText(admin.getAppIds()) || |
|
|
if (!StringUtils.hasText(admin.getAppIds()) || |
|
|
!Arrays.stream(admin.getAppIds().split(",")).map(Integer::parseInt).toList().contains(app.getId())){ |
|
|
!Arrays.stream(admin.getAppIds().split(",")).map(Integer::parseInt).toList().contains(app.getId())) { |
|
|
return "无权限绑定该应用"; |
|
|
return "无权限绑定该应用"; |
|
|
} |
|
|
} |
|
|
long cnt = queryBindCnt(admin.getId(), app.getId()); |
|
|
long cnt = queryBindCnt(admin.getId(), app.getId()); |
|
@ -80,7 +102,7 @@ public class AdminDeviceService { |
|
|
return "绑定成功"; |
|
|
return "绑定成功"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public long queryBindCnt(int adminId, int appId){ |
|
|
public long queryBindCnt(int adminId, int appId) { |
|
|
LambdaQueryWrapper<MatrixAdminDevice> queryWrapper = new LambdaQueryWrapper<>(); |
|
|
LambdaQueryWrapper<MatrixAdminDevice> queryWrapper = new LambdaQueryWrapper<>(); |
|
|
queryWrapper.eq(MatrixAdminDevice::getAdminId, adminId); |
|
|
queryWrapper.eq(MatrixAdminDevice::getAdminId, adminId); |
|
|
queryWrapper.eq(MatrixAdminDevice::getAppId, appId); |
|
|
queryWrapper.eq(MatrixAdminDevice::getAppId, appId); |
|
@ -88,5 +110,142 @@ public class AdminDeviceService { |
|
|
return mapper.selectCount(queryWrapper); |
|
|
return mapper.selectCount(queryWrapper); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public OverviewBo incomeOverview(int adminId, String code) { |
|
|
|
|
|
if (StringUtils.hasText(code)) { |
|
|
|
|
|
MatrixApp app = appMapper.queryByCode(code); |
|
|
|
|
|
if (app == null) { |
|
|
|
|
|
return new OverviewBo(); |
|
|
|
|
|
} |
|
|
|
|
|
return incomeOverviewByAppIds(Collections.singletonList(app.getId()), adminId); |
|
|
|
|
|
} |
|
|
|
|
|
List<Integer> appIds = adminService.getAdminAppIds(adminId); |
|
|
|
|
|
if (CollectionUtils.isEmpty(appIds)) { |
|
|
|
|
|
return new OverviewBo(); |
|
|
|
|
|
} |
|
|
|
|
|
return incomeOverviewByAppIds(appIds, adminId); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private OverviewBo incomeOverviewByAppIds(List<Integer> appIds, int adminId) { |
|
|
|
|
|
if (CollectionUtils.isEmpty(appIds)) { |
|
|
|
|
|
return new OverviewBo(); |
|
|
|
|
|
} |
|
|
|
|
|
LambdaQueryWrapper<MatrixAdvRecord> advQuery = new QueryWrapper<MatrixAdvRecord>() |
|
|
|
|
|
.select("sum(ecpm) as ecpm").lambda(); |
|
|
|
|
|
advQuery.in(MatrixAdvRecord::getAppId, appIds); |
|
|
|
|
|
advQuery.gt(MatrixAdvRecord::getCreatedAt, new Timestamp(DateUtil.getDayBeginTimestamp(System.currentTimeMillis()))); |
|
|
|
|
|
advQuery.eq(MatrixAdvRecord::getAdminId, adminId); |
|
|
|
|
|
MatrixAdvRecord record = advRecordMapper.selectOne(advQuery); |
|
|
|
|
|
OverviewBo bo = new OverviewBo(); |
|
|
|
|
|
bo.todayIncome = record == null ? 0 : record.getEcpm(); |
|
|
|
|
|
|
|
|
|
|
|
int today = DateUtil.currentDate(); |
|
|
|
|
|
int yesterday = DateUtil.datePlus(today, -1); |
|
|
|
|
|
bo.yesterdayIncome = aggregationSubService.getIncome(adminId, appIds, yesterday, yesterday); |
|
|
|
|
|
bo.totalIncome = aggregationSubService.getIncome(adminId, appIds, 20240401, yesterday); |
|
|
|
|
|
|
|
|
|
|
|
LocalDate now = LocalDate.now(); |
|
|
|
|
|
|
|
|
|
|
|
// 获取上个月的年份和月份
|
|
|
|
|
|
YearMonth lastMonth = YearMonth.from(now).minusMonths(1); |
|
|
|
|
|
|
|
|
|
|
|
// 获取上个月的第一天和最后一天
|
|
|
|
|
|
LocalDate firstDayOfLastMonth = lastMonth.atDay(1); |
|
|
|
|
|
LocalDate lastDayOfLastMonth = lastMonth.atEndOfMonth(); |
|
|
|
|
|
bo.lastMonthIncome = aggregationSubService.getIncome(adminId, appIds, DateUtil.date2Number(firstDayOfLastMonth), DateUtil.date2Number(lastDayOfLastMonth)); |
|
|
|
|
|
|
|
|
|
|
|
YearMonth thisMonth = YearMonth.from(now); |
|
|
|
|
|
|
|
|
|
|
|
// 获取本月的第一天
|
|
|
|
|
|
LocalDate firstDayOfThisMonth = thisMonth.atDay(1); |
|
|
|
|
|
bo.thisMonthIncome = bo.todayIncome + aggregationSubService.getIncome(adminId, appIds, DateUtil.date2Number(firstDayOfThisMonth), today); |
|
|
|
|
|
return bo; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public List<DateIncome> incomeDaily(IncomeQuery query, int adminId) { |
|
|
|
|
|
LambdaQueryWrapper<MatrixAdvAggregationSub> wrapper = new QueryWrapper<MatrixAdvAggregationSub>() |
|
|
|
|
|
.select("date, sum(income_real) as income_real") |
|
|
|
|
|
.lambda(); |
|
|
|
|
|
if (StringUtils.hasText(query.code)) { |
|
|
|
|
|
MatrixApp app = appMapper.queryByCode(query.code); |
|
|
|
|
|
if (app == null) { |
|
|
|
|
|
return new ArrayList<>(); |
|
|
|
|
|
} |
|
|
|
|
|
wrapper.eq(MatrixAdvAggregationSub::getAppId, app.getId()); |
|
|
|
|
|
} else { |
|
|
|
|
|
List<Integer> appIds = adminService.getAdminAppIds(adminId); |
|
|
|
|
|
if (CollectionUtils.isEmpty(appIds)) { |
|
|
|
|
|
return new ArrayList<>(); |
|
|
|
|
|
} |
|
|
|
|
|
wrapper.in(MatrixAdvAggregationSub::getAppId, appIds); |
|
|
|
|
|
} |
|
|
|
|
|
if (query.platform != null) { |
|
|
|
|
|
wrapper.eq(MatrixAdvAggregationSub::getPlatform, query.platform); |
|
|
|
|
|
} |
|
|
|
|
|
wrapper.eq(MatrixAdvAggregationSub::getAdminId, adminId); |
|
|
|
|
|
int end = DateUtil.datePlus(DateUtil.currentDate(), -1), start = DateUtil.datePlus(end, -30); |
|
|
|
|
|
if (!CollectionUtils.isEmpty(query.date)) { |
|
|
|
|
|
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); |
|
|
|
|
|
try { |
|
|
|
|
|
Date beginDate = format.parse(query.date.get(0)), endDate = format.parse(query.date.get(1)); |
|
|
|
|
|
start = DateUtil.long2Number(beginDate.getTime()); |
|
|
|
|
|
end = DateUtil.long2Number(endDate.getTime()); |
|
|
|
|
|
} catch (ParseException e) { |
|
|
|
|
|
throw new PaganiException(PaganiExceptionCode.ILLEGAL_REQUEST, "时间范围有误"); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
wrapper.between(MatrixAdvAggregationSub::getDate, start, end); |
|
|
|
|
|
wrapper.groupBy(MatrixAdvAggregationSub::getDate); |
|
|
|
|
|
wrapper.orderByAsc(MatrixAdvAggregationSub::getDate); |
|
|
|
|
|
List<MatrixAdvAggregationSub> data = subMapper.selectList(wrapper); |
|
|
|
|
|
Map<Integer, MatrixAdvAggregationSub> map = data.stream().collect(Collectors.toMap(MatrixAdvAggregationSub::getDate, x -> x)); |
|
|
|
|
|
List<DateIncome> res = new ArrayList<>(); |
|
|
|
|
|
for (int d = start; d <= end; d = DateUtil.datePlus(d, 1)) { |
|
|
|
|
|
MatrixAdvAggregationSub sub = map.get(d); |
|
|
|
|
|
DateIncome each = new DateIncome(); |
|
|
|
|
|
each.date = d; |
|
|
|
|
|
if (sub != null) { |
|
|
|
|
|
each.income = sub.getIncomeReal(); |
|
|
|
|
|
} |
|
|
|
|
|
res.add(each); |
|
|
|
|
|
} |
|
|
|
|
|
return res; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Scheduled(cron = "0 30 1 * * ?") |
|
|
|
|
|
public void dailyCalc() { |
|
|
|
|
|
int yesterday = DateUtil.datePlus(DateUtil.currentDate(), -1); |
|
|
|
|
|
calcTargetDate(yesterday); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void calcTargetDate(int targetDate) { |
|
|
|
|
|
long dateBegin = DateUtil.getDayBeginTimestamp(DateUtil.date2Long(targetDate)); |
|
|
|
|
|
long dateEnd = dateBegin + 86400_000 - 1; |
|
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<MatrixAdvRecord> query = new QueryWrapper<MatrixAdvRecord>() |
|
|
|
|
|
.select("admin_id, app_id, platform, sum(ecpm) as ecpm") |
|
|
|
|
|
.lambda(); |
|
|
|
|
|
query.between(MatrixAdvRecord::getCreatedAt, new Timestamp(dateBegin), new Timestamp(dateEnd)); |
|
|
|
|
|
query.eq(MatrixAdvRecord::getAdvType, 3);//设备主只算激励视频
|
|
|
|
|
|
query.gt(MatrixAdvRecord::getAdminId, 0); |
|
|
|
|
|
query.groupBy(MatrixAdvRecord::getAdminId,MatrixAdvRecord::getAppId, MatrixAdvRecord::getPlatform); |
|
|
|
|
|
List<MatrixAdvRecord> records = advRecordMapper.selectList(query); |
|
|
|
|
|
List<MatrixAdvAggregationSub> aggregations = new ArrayList<>(); |
|
|
|
|
|
List<MatrixAdmin> adminList = adminMapper.selectList(null); |
|
|
|
|
|
Map<Integer, MatrixAdmin> adminMap = adminList.stream().collect(Collectors.toMap(x->x.getId(), x->x)); |
|
|
|
|
|
for (MatrixAdvRecord r : records) { |
|
|
|
|
|
MatrixAdvAggregationSub aggregation = new MatrixAdvAggregationSub(); |
|
|
|
|
|
aggregation.setAdminId(r.getAdminId()); |
|
|
|
|
|
aggregation.setAppId(r.getAppId()); |
|
|
|
|
|
aggregation.setPlatform(r.getPlatform()); |
|
|
|
|
|
aggregation.setDate(targetDate); |
|
|
|
|
|
aggregation.setIncome(r.getEcpm()); |
|
|
|
|
|
aggregations.add(aggregation); |
|
|
|
|
|
aggregation.setIncomeRate(adminMap.get(r.getAdminId()).getIncomeRate()); |
|
|
|
|
|
aggregation.setIncomeReal(aggregation.getIncomeRate() * r.getEcpm() / 100); |
|
|
|
|
|
} |
|
|
|
|
|
if (CollectionUtils.isEmpty(aggregations)) { |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
|
|
|
subMapper.insertBatch(aggregations); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|