|
|
@ -4,6 +4,8 @@ import app.entities.db.CollectableStatistic; |
|
|
|
import app.updates.BaseUpdater; |
|
|
|
import jakarta.annotation.PostConstruct; |
|
|
|
import jakarta.persistence.EntityManager; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Qualifier; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
@ -19,6 +21,8 @@ public class CollectStatisticService extends BaseUpdater { |
|
|
|
|
|
|
|
private EntityManager entityManager; |
|
|
|
|
|
|
|
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public CollectStatisticService(@Qualifier(value = "RwEntityManager") EntityManager entityManager) { |
|
|
|
this.entityManager = entityManager; |
|
|
@ -26,7 +30,9 @@ public class CollectStatisticService extends BaseUpdater { |
|
|
|
|
|
|
|
@Transactional("RwTransactionManager") |
|
|
|
public void add(CollectableStatistic collectableStatistic) { |
|
|
|
if (collectableStatistic.getClient_ip() != null && collectableStatistic.getClient_ip().equals("192.168.3.3") && collectableStatistic.getPath().equals("/api/stats")) return; |
|
|
|
if (collectableStatistic.isServerRequest()) return; |
|
|
|
if (collectableStatistic.isIgnoreRule()) return; |
|
|
|
try { |
|
|
|
entityManager.createNativeQuery("INSERT INTO `web_statistic` (`steam64`, `client_ip`, `method`, `path`, `query`, `useragent`) VALUES (?1, ?2, ?3, ?4, ?5, ?6)") |
|
|
|
.setParameter(1, collectableStatistic.getSteam64()) |
|
|
|
.setParameter(2, collectableStatistic.getClient_ip()) |
|
|
@ -35,5 +41,8 @@ public class CollectStatisticService extends BaseUpdater { |
|
|
|
.setParameter(5, collectableStatistic.getQuery()) |
|
|
|
.setParameter(6, collectableStatistic.getUseragent()) |
|
|
|
.executeUpdate(); |
|
|
|
} catch (Exception err) { |
|
|
|
logger.error("Ignoring add stats"); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|