feat: 1.uni-ad广告回调接入 2.广告奖励免费观看时长
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.sqx.modules.app.controller.app;
|
||||
|
||||
import com.sqx.common.utils.Result;
|
||||
import com.sqx.modules.app.annotation.Login;
|
||||
import com.sqx.modules.app.service.AdService;
|
||||
import com.sqx.modules.callback.service.UniAdCallbackRecordService;
|
||||
import com.sqx.modules.sys.controller.AbstractController;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/app/ad")
|
||||
public class AdController extends AbstractController {
|
||||
|
||||
private final UniAdCallbackRecordService callbackRecordService;
|
||||
private final AdService adService;
|
||||
|
||||
public AdController(UniAdCallbackRecordService callbackRecordService, AdService adService) {
|
||||
this.callbackRecordService = callbackRecordService;
|
||||
this.adService = adService;
|
||||
}
|
||||
|
||||
@Login
|
||||
@GetMapping("/state")
|
||||
public Result getAdState(@RequestParam String extraKey, @RequestAttribute Long userId) {
|
||||
return Result.success(callbackRecordService.getStateByExtraKey(userId, extraKey));
|
||||
}
|
||||
|
||||
@Login
|
||||
@GetMapping("/detail")
|
||||
public Result getAdDetail(@RequestAttribute Long userId) {
|
||||
return Result.success(adService.getDetail(userId));
|
||||
}
|
||||
}
|
||||
7
src/main/java/com/sqx/modules/app/service/AdService.java
Normal file
7
src/main/java/com/sqx/modules/app/service/AdService.java
Normal file
@@ -0,0 +1,7 @@
|
||||
package com.sqx.modules.app.service;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public interface AdService {
|
||||
HashMap<String, Object> getDetail(Long userId);
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.sqx.modules.app.service.impl;
|
||||
|
||||
import com.sqx.common.utils.RedisUtils;
|
||||
import com.sqx.modules.app.service.AdService;
|
||||
import com.sqx.modules.redisService.impl.RedisServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
@Service
|
||||
public class AdServiceImpl implements AdService {
|
||||
|
||||
private final RedisServiceImpl redisServiceImpl;
|
||||
|
||||
public AdServiceImpl(RedisServiceImpl redisServiceImpl) {
|
||||
this.redisServiceImpl = redisServiceImpl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HashMap<String, Object> getDetail(Long userId) {
|
||||
Long freeWatchRemainTime = redisServiceImpl.getFreeWatchRemainTime(userId, false);
|
||||
Long permanentlyFreeWatchRemainTime = redisServiceImpl.getFreeWatchRemainTime(userId, true);
|
||||
return new HashMap<String, Object>(){{
|
||||
put("adFreeWatchTime", permanentlyFreeWatchRemainTime);
|
||||
put("payFreeWatchTime", freeWatchRemainTime);
|
||||
put("totalFreeWatchTime", freeWatchRemainTime + permanentlyFreeWatchRemainTime);
|
||||
}};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user