8 changed files with 158 additions and 5 deletions
@ -0,0 +1,67 @@ |
|||||
|
package app.updates; |
||||
|
|
||||
|
import app.entities.Stats; |
||||
|
import com.fasterxml.jackson.core.JsonProcessingException; |
||||
|
import com.fasterxml.jackson.databind.ObjectMapper; |
||||
|
import jakarta.annotation.PostConstruct; |
||||
|
import org.jobrunr.scheduling.JobScheduler; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.beans.factory.annotation.Value; |
||||
|
import org.springframework.stereotype.Component; |
||||
|
import org.springframework.web.client.RestTemplate; |
||||
|
|
||||
|
import java.io.IOException; |
||||
|
import java.net.MalformedURLException; |
||||
|
import java.net.URL; |
||||
|
import java.time.Instant; |
||||
|
|
||||
|
@Component |
||||
|
public class SocialUpdater { |
||||
|
RestTemplate restTemplate; |
||||
|
ObjectMapper objectMapper; |
||||
|
Stats stats; |
||||
|
JobScheduler jobScheduler; |
||||
|
|
||||
|
@Value("${backend.social.discord}") |
||||
|
private String discord_url = ""; |
||||
|
|
||||
|
@Value("${backend.social.vk}") |
||||
|
private String vk_url; |
||||
|
|
||||
|
@Autowired |
||||
|
public SocialUpdater(Stats stats, |
||||
|
JobScheduler jobScheduler) { |
||||
|
restTemplate = new RestTemplate(); |
||||
|
objectMapper = new ObjectMapper(); |
||||
|
this.stats = stats; |
||||
|
this.jobScheduler = jobScheduler; |
||||
|
} |
||||
|
|
||||
|
@PostConstruct |
||||
|
public void SetUpdater(){ |
||||
|
if(!discord_url.isEmpty()) { |
||||
|
jobScheduler.enqueue(() -> UpdateDiscordCount()); |
||||
|
jobScheduler.scheduleRecurrently("*/5 * * * *", () -> UpdateDiscordCount()); |
||||
|
jobScheduler.enqueue(() -> UpdateVKCount()); |
||||
|
jobScheduler.scheduleRecurrently("*/5 * * * *", () -> UpdateVKCount()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public void UpdateDiscordCount() throws IOException { |
||||
|
stats.setDiscord_users(objectMapper.readTree(new URL(discord_url)).get("approximate_member_count").asInt()); |
||||
|
stats.getUpdates().merge("discord_count", Instant.now().getEpochSecond(), (x, y) -> y); |
||||
|
} |
||||
|
|
||||
|
public void UpdateVKCount() { |
||||
|
int count = 0; |
||||
|
String response = restTemplate.getForEntity(vk_url, String.class).getBody(); |
||||
|
int k_start = response.indexOf("<h3 class=\"slim_header\">") + "<h3 class=\"slim_header\">".length(); |
||||
|
int k_end = response.indexOf("<", k_start); |
||||
|
count += Integer.valueOf(response.substring(k_start, k_end)) * 1000; |
||||
|
int s_start = response.indexOf("</span>", k_end) + "</span>".length(); |
||||
|
int s_end = response.indexOf(" ", s_start); |
||||
|
count += Integer.valueOf(response.substring(s_start, s_end)); |
||||
|
stats.setVk_users(count); |
||||
|
stats.getUpdates().merge("vk_count", Instant.now().getEpochSecond(), (x, y) -> y); |
||||
|
} |
||||
|
} |
@ -0,0 +1,54 @@ |
|||||
|
package app.updates; |
||||
|
|
||||
|
import app.entities.Stats; |
||||
|
import jakarta.annotation.PostConstruct; |
||||
|
import jakarta.persistence.EntityManager; |
||||
|
import jakarta.persistence.PersistenceContext; |
||||
|
import org.jobrunr.scheduling.JobScheduler; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.beans.factory.annotation.Value; |
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
import java.time.Instant; |
||||
|
|
||||
|
@Component |
||||
|
public class VipCountUpdater { |
||||
|
private Stats stats; |
||||
|
private JobScheduler jobScheduler; |
||||
|
@PersistenceContext |
||||
|
EntityManager entityManager; |
||||
|
|
||||
|
@Value("${backend.updates.vip_count}") |
||||
|
boolean update = false; |
||||
|
|
||||
|
@Autowired |
||||
|
public VipCountUpdater(Stats stats, |
||||
|
JobScheduler jobScheduler) { |
||||
|
this.stats = stats; |
||||
|
this.jobScheduler = jobScheduler; |
||||
|
} |
||||
|
|
||||
|
@PostConstruct |
||||
|
public void SetUpdater(){ |
||||
|
if(update) { |
||||
|
jobScheduler.enqueue(() -> UpdateFreeVIPCount()); |
||||
|
jobScheduler.enqueue(() -> UpdateVIPCount()); |
||||
|
jobScheduler.scheduleRecurrently("*/5 * * * *", () -> UpdateFreeVIPCount()); |
||||
|
jobScheduler.scheduleRecurrently("*/5 * * * *", () -> UpdateVIPCount()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public void UpdateVIPCount() { |
||||
|
stats.setVip_players( |
||||
|
(Long) entityManager.createNativeQuery("SELECT COUNT(*) as count FROM `sm_admins` WHERE `status` LIKE 'VIP' AND (`comment` LIKE 'Donate.User' OR `comment` LIKE 'f13bot.User')") |
||||
|
.getSingleResult()); |
||||
|
stats.getUpdates().merge("vip_count", Instant.now().getEpochSecond(), (x, y) -> y); |
||||
|
} |
||||
|
|
||||
|
public void UpdateFreeVIPCount() { |
||||
|
stats.setFreevip_players( |
||||
|
(Long) entityManager.createNativeQuery("SELECT COUNT(*) as count FROM `sm_admins` WHERE `status` LIKE 'VIP' AND `comment` LIKE 'f13bot.FreeVIP'") |
||||
|
.getSingleResult()); |
||||
|
stats.getUpdates().merge("freevip_count", Instant.now().getEpochSecond(), (x, y) -> y); |
||||
|
} |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package app.updates; |
||||
|
|
||||
|
import org.junit.Test; |
||||
|
import org.springframework.web.client.RestTemplate; |
||||
|
|
||||
|
public class VkSocialGetter { |
||||
|
@Test |
||||
|
public void Check() { |
||||
|
int count = 0; |
||||
|
String response = new RestTemplate().getForEntity("https://m.vk.com/facti13?act=members", String.class).getBody(); |
||||
|
int k_start = response.indexOf("<h3 class=\"slim_header\">") + "<h3 class=\"slim_header\">".length(); |
||||
|
int k_end = response.indexOf("<", k_start); |
||||
|
System.out.printf("%d %d\n", k_start, k_end); |
||||
|
count += Integer.valueOf(response.substring(k_start, k_end)) * 1000; |
||||
|
int s_start = response.indexOf("</span>", k_end) + "</span>".length(); |
||||
|
int s_end = response.indexOf(" ", s_start); |
||||
|
count += Integer.valueOf(response.substring(s_start, s_end)); |
||||
|
System.out.print(count); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue