|
|
@ -55,7 +55,10 @@ public class FreeVIPService { |
|
|
|
} |
|
|
|
|
|
|
|
public Long getLastGivedFreeVIP(SocialAuth socialAuth) { |
|
|
|
if (socialAuth.getVk_id() != 0) { |
|
|
|
if (socialAuth == null) { |
|
|
|
return 0L; |
|
|
|
} |
|
|
|
else if (socialAuth.getVk_id() != 0) { |
|
|
|
return (Long) entityManager.createNativeQuery("SELECT UNIX_TIMESTAMP(`date`) as u_time FROM free_vip WHERE vk_id = ?1 ORDER BY `date` DESC") |
|
|
|
.setParameter(1, socialAuth.getVk_id()) |
|
|
|
.getResultStream().map(u_time -> Long.valueOf((String) u_time)).findFirst().orElse(0L); |
|
|
@ -70,7 +73,7 @@ public class FreeVIPService { |
|
|
|
|
|
|
|
@Transactional |
|
|
|
public boolean setGivedFreeVip(SteamID steamID, SocialAuth socialAuth) { |
|
|
|
if (!socialAuth.haveAny()) return false; |
|
|
|
if (socialAuth == null) socialAuth = new SocialAuth(); |
|
|
|
return entityManager.createNativeQuery("INSERT INTO `free_vip` (`id`, `steam3`, `vk_id`, `discord_id`, `date`) VALUES (NULL, ?1, ?2, ?3, current_timestamp())") |
|
|
|
.setParameter(1, steamID.steam2) |
|
|
|
.setParameter(2, socialAuth.getVk_id()) |
|
|
@ -78,7 +81,7 @@ public class FreeVIPService { |
|
|
|
.executeUpdate() > 0; |
|
|
|
} |
|
|
|
|
|
|
|
public Long addFreeVIP(SteamID steamID, SocialAuth socialAuth) { |
|
|
|
public Long addFreeVIP(SteamID steamID, SocialAuth socialAuth, Boolean test) { |
|
|
|
/* |
|
|
|
0 - права уже есть |
|
|
|
1 - права выданы |
|
|
@ -106,16 +109,27 @@ public class FreeVIPService { |
|
|
|
BigDecimal total_usertime = BigDecimal.valueOf(0); |
|
|
|
for (Map.Entry<String, HashMap<String, BigDecimal>> stringServerEntry : usertimeService.getPlayerUsertime(steamID).entrySet()) { |
|
|
|
for (Map.Entry<String, BigDecimal> stringBigDecimalEntry : stringServerEntry.getValue().entrySet()) { |
|
|
|
total_usertime.add(stringBigDecimalEntry.getValue()); |
|
|
|
total_usertime = total_usertime.add(stringBigDecimalEntry.getValue()); |
|
|
|
if (test) { |
|
|
|
System.out.printf("%s - %d\n", stringBigDecimalEntry.getKey(), stringBigDecimalEntry.getValue().longValue()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (test) { |
|
|
|
System.out.printf("Total: %d", total_usertime.longValue()); |
|
|
|
} |
|
|
|
|
|
|
|
if (total_usertime.longValue() < need_usertime) { |
|
|
|
//4.недостаточно наиграл
|
|
|
|
return -1 * (need_usertime - total_usertime.longValue()); |
|
|
|
} |
|
|
|
|
|
|
|
if (test != true) { |
|
|
|
setGivedFreeVip(steamID, socialAuth); |
|
|
|
permitionService.addFreeVIP(steamID, 86400); |
|
|
|
publishWebhook(steamID, 86400, "Free"); |
|
|
|
} |
|
|
|
return 1L; |
|
|
|
} |
|
|
|
|
|
|
|