Compare commits
89 Commits
feature/ta
...
b842114bb3
| Author | SHA1 | Date | |
|---|---|---|---|
| b842114bb3 | |||
| 187e20ad9d | |||
| 6545e01f9b | |||
| f2a74b9f84 | |||
| 15d6894013 | |||
| 5bd78701e9 | |||
| 74e5e2b017 | |||
| 30772ec123 | |||
| c5d7689b97 | |||
| 5b0decff19 | |||
| 2bca814b3f | |||
| 24839dc3fe | |||
| 2b8a5f326c | |||
| 180e1e6be4 | |||
| 1a1fca9325 | |||
| e416a84bf7 | |||
| dcd357c6e0 | |||
| 43958b0d7c | |||
| c8ff9725e5 | |||
| bac9f84092 | |||
| 38a989e223 | |||
| 2b782867c9 | |||
| 3a0866dfa4 | |||
| 386dceed36 | |||
| 5d4370d932 | |||
| 23effc5fe6 | |||
| e259bb0262 | |||
| 9849a46a40 | |||
| 757850aae6 | |||
| 431e777988 | |||
| 8b8833cd2b | |||
| 754ae67714 | |||
| 7d929254dd | |||
| d822059e4e | |||
| 0fecaa501b | |||
| 034387af16 | |||
| 07b27cb6de | |||
| 28ec8dcd64 | |||
| de303fcd8e | |||
| 35a8d6a8c7 | |||
| bf070c29a1 | |||
| 395da1739b | |||
| 34744f93ec | |||
| a20b0c4963 | |||
| 94485ab9d2 | |||
| 204dbc5f73 | |||
| 98bc9633be | |||
| 8bdc56bd8a | |||
| 051e201525 | |||
| b68520ffa4 | |||
| 74078b120c | |||
| 94285d88b7 | |||
| 008b173b70 | |||
| 0ba76e16b2 | |||
| bdb19c81ca | |||
| d56b5a5617 | |||
| 182f850a3b | |||
| 11c0b4f369 | |||
| a6151fb01e | |||
| 3c53ea17a5 | |||
| 3b505398e4 | |||
| ead94bea2f | |||
| ecfd0a9ae5 | |||
| 7a0c2fde66 | |||
| 56a74a8b49 | |||
| 0863650ddc | |||
| 02a4b5081f | |||
| 9ef9ad18cf | |||
| fd39b88296 | |||
| 74f02e7827 | |||
| dc07591612 | |||
| 0f9721f562 | |||
| 742d246cdb | |||
| 0ac12deed3 | |||
| 9a4652b8f2 | |||
| edd29ea029 | |||
| 7838e60a82 | |||
| 02a56ee434 | |||
| d60187cc07 | |||
| 6359c59af9 | |||
| c84e935f05 | |||
| f9ad7fddbd | |||
| f011205a22 | |||
| 5920067b02 | |||
| 9e6cba52f6 | |||
| 638dc42a46 | |||
| fd4248d722 | |||
| b71b4db66e | |||
| 9ee1a4de3c |
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# Используем официальный образ OpenJDK 17 как базовый образ
|
||||||
|
FROM openjdk:17
|
||||||
|
|
||||||
|
# Установка рабочей директории внутри контейнера
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Копируем JAR-файл приложения из локальной директории внутрь контейнера
|
||||||
|
COPY ServerMonitorBot-0.0.1-SNAPSHOT.jar app.jar
|
||||||
|
|
||||||
|
# Команда для запуска Spring Boot приложения при старте контейнера
|
||||||
|
CMD ["java", "-jar", "app.jar"]
|
||||||
71
Jenkinsfile_CD
Normal file
71
Jenkinsfile_CD
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'maven:3.9.5-eclipse-temurin-17'
|
||||||
|
args '-v /root/.m2:/root/.m2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
environment {
|
||||||
|
SSH_HOST = credentials('ROCK_PI_5_SSH_HOST')
|
||||||
|
SSH_PORT = credentials('ROCK_PI_5_SSH_PORT')
|
||||||
|
SSH_USER = credentials('ROCK_PI_5_SSH_USER')
|
||||||
|
SSH_PASS = credentials('ROCK_PI_5_SSH_PASS')
|
||||||
|
PATH_TO_DEV_FOLDER = credentials('SERVERMONITORBOT_PATH_TO_DEV_FOLDER')
|
||||||
|
IMAGE_NAME = 'servermonitorbot'
|
||||||
|
IMAGE_VERSION = 'latest'
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Init container') {
|
||||||
|
steps {
|
||||||
|
sh 'apt-get update && apt-get install -y sshpass openssh-client'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
withCredentials([file(credentialsId: 'SERVERMONITORBOT_APPLICATION_YAML', variable: 'application_yaml')]) {
|
||||||
|
sh "cp -f \$application_yaml src/main/resources/application.yml"
|
||||||
|
}
|
||||||
|
sh 'mvn -B -DskipTests -X clean package spring-boot:repackage'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Stop container') {
|
||||||
|
steps {
|
||||||
|
sh """
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'cd ${PATH_TO_DEV_FOLDER} && docker compose down'
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Remove old image') {
|
||||||
|
steps {
|
||||||
|
sh """
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image rm -f ${IMAGE_NAME}-app:${IMAGE_VERSION} || true'
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
sh """
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'mkdir -p ${PATH_TO_DEV_FOLDER}'
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'rm -f ${PATH_TO_DEV_FOLDER}/{*.*}'
|
||||||
|
sshpass -p ${SSH_PASS} scp -o StrictHostKeyChecking=no -P ${SSH_PORT} target/*.jar ${SSH_USER}@${SSH_HOST}:${PATH_TO_DEV_FOLDER}/
|
||||||
|
sshpass -p ${SSH_PASS} scp -o StrictHostKeyChecking=no -P ${SSH_PORT} Dockerfile ${SSH_USER}@${SSH_HOST}:${PATH_TO_DEV_FOLDER}/
|
||||||
|
sshpass -p ${SSH_PASS} scp -o StrictHostKeyChecking=no -P ${SSH_PORT} docker-compose.yml ${SSH_USER}@${SSH_HOST}:${PATH_TO_DEV_FOLDER}/
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'cd ${PATH_TO_DEV_FOLDER} && docker build --no-cache -t ${IMAGE_NAME}:${IMAGE_VERSION} .'
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'cd ${PATH_TO_DEV_FOLDER} && docker compose up -d'
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Remove useless images') {
|
||||||
|
steps {
|
||||||
|
sh """
|
||||||
|
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image prune --all --force'
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
15
Jenkinsfile_CI
Normal file
15
Jenkinsfile_CI
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'maven:3.9.5-eclipse-temurin-17'
|
||||||
|
args '-v /root/.m2:/root/.m2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'mvn -B -DskipTests -X clean package spring-boot:repackage'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: postgres:latest
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: servermonitorbot
|
||||||
|
POSTGRES_PASSWORD: servermonitorbot
|
||||||
|
POSTGRES_DB: servermonitorbot
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
49
pom.xml
49
pom.xml
@@ -15,6 +15,11 @@
|
|||||||
<description>ServerMonitorBot</description>
|
<description>ServerMonitorBot</description>
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>17</java.version>
|
<java.version>17</java.version>
|
||||||
|
<flyway.version>9.16.0</flyway.version>
|
||||||
|
<db.url>${database.url}</db.url>
|
||||||
|
<db.user>${database.username}</db.user>
|
||||||
|
<db.password>${database.password}</db.password>
|
||||||
|
<start-class>ru.ldeloff.servermonitorbot.ServerMonitorBotApplication</start-class>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -40,7 +45,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.telegram</groupId>
|
<groupId>org.telegram</groupId>
|
||||||
<artifactId>telegrambots</artifactId>
|
<artifactId>telegrambots</artifactId>
|
||||||
<version>6.7.0</version>
|
<version>6.8.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.jcraft</groupId>
|
<groupId>com.jcraft</groupId>
|
||||||
@@ -51,14 +56,15 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.liquibase</groupId>
|
|
||||||
<artifactId>liquibase-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.postgresql</groupId>
|
||||||
<artifactId>postgresql</artifactId>
|
<artifactId>postgresql</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.flywaydb</groupId>
|
||||||
|
<artifactId>flyway-core</artifactId>
|
||||||
|
<version>${flyway.version}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@@ -75,6 +81,39 @@
|
|||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.flywaydb</groupId>
|
||||||
|
<artifactId>flyway-maven-plugin</artifactId>
|
||||||
|
<version>${flyway.version}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>migrate</id>
|
||||||
|
<phase>deploy</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>migrate</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<url>${database.url}</url>
|
||||||
|
<user>${database.username}</user>
|
||||||
|
<password>${database.password}</password>
|
||||||
|
<locations>
|
||||||
|
<location>classpath:db/migration</location>
|
||||||
|
</locations>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>repackage</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ import ru.ldeloff.servermonitorbot.service.command.cputemp.CpuTempAggregateComma
|
|||||||
import ru.ldeloff.servermonitorbot.service.command.cputemp.CpuTempCommand;
|
import ru.ldeloff.servermonitorbot.service.command.cputemp.CpuTempCommand;
|
||||||
import ru.ldeloff.servermonitorbot.service.command.hddtemp.HddTempAggregateCommand;
|
import ru.ldeloff.servermonitorbot.service.command.hddtemp.HddTempAggregateCommand;
|
||||||
import ru.ldeloff.servermonitorbot.service.command.hddtemp.HddTempCommand;
|
import ru.ldeloff.servermonitorbot.service.command.hddtemp.HddTempCommand;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.command.mdadm.MdadmStatusAggregateCommand;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.command.mdadm.MdadmStatusCommand;
|
||||||
import ru.ldeloff.servermonitorbot.service.command.uname.UnameAggregateCommand;
|
import ru.ldeloff.servermonitorbot.service.command.uname.UnameAggregateCommand;
|
||||||
import ru.ldeloff.servermonitorbot.service.command.uname.UnameCommand;
|
import ru.ldeloff.servermonitorbot.service.command.uname.UnameCommand;
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ public class TelegramBotController extends TelegramLongPollingBot {
|
|||||||
final CpuTempCommand cpuTempCommand;
|
final CpuTempCommand cpuTempCommand;
|
||||||
final HddTempAggregateCommand hddTempAggregateCommand;
|
final HddTempAggregateCommand hddTempAggregateCommand;
|
||||||
final HddTempCommand hddTempCommand;
|
final HddTempCommand hddTempCommand;
|
||||||
|
final MdadmStatusAggregateCommand mdadmStatusAggregateCommand;
|
||||||
|
final MdadmStatusCommand mdadmStatusCommand;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onUpdateReceived(Update update) {
|
public void onUpdateReceived(Update update) {
|
||||||
@@ -55,6 +59,9 @@ public class TelegramBotController extends TelegramLongPollingBot {
|
|||||||
case "HDD.temp" -> {
|
case "HDD.temp" -> {
|
||||||
hddTempAggregateCommand.execute(update, this);
|
hddTempAggregateCommand.execute(update, this);
|
||||||
}
|
}
|
||||||
|
case "MDADM" -> {
|
||||||
|
mdadmStatusAggregateCommand.execute(update,this);
|
||||||
|
}
|
||||||
default -> {
|
default -> {
|
||||||
switchToMainMenu.execute(update, this);
|
switchToMainMenu.execute(update, this);
|
||||||
}
|
}
|
||||||
@@ -73,6 +80,9 @@ public class TelegramBotController extends TelegramLongPollingBot {
|
|||||||
case "HDD.temp" -> {
|
case "HDD.temp" -> {
|
||||||
hddTempCommand.execute(update, this);
|
hddTempCommand.execute(update, this);
|
||||||
}
|
}
|
||||||
|
case "MDADM" -> {
|
||||||
|
mdadmStatusCommand.execute(update,this);
|
||||||
|
}
|
||||||
default -> {
|
default -> {
|
||||||
switchToMainMenu.execute(update, this);
|
switchToMainMenu.execute(update, this);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
package ru.ldeloff.servermonitorbot.service.command.mdadm;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.telegram.telegrambots.meta.api.methods.send.SendMessage;
|
||||||
|
import ru.ldeloff.servermonitorbot.model.User;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.command.CommandTemplate;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.role.RoleService;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.user.UserService;
|
||||||
|
import ru.ldeloff.servermonitorbot.utils.ui.uname.ServerListButtons;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class MdadmStatusAggregateCommand extends CommandTemplate {
|
||||||
|
|
||||||
|
final ServerListButtons serverListButtons;
|
||||||
|
|
||||||
|
public MdadmStatusAggregateCommand(UserService userService, RoleService roleService, ServerListButtons serverListButtons) {
|
||||||
|
super(userService, roleService);
|
||||||
|
this.serverListButtons = serverListButtons;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SendMessage actionForAuth(User user, SendMessage message) {
|
||||||
|
return serverListButtons.uiForm(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
package ru.ldeloff.servermonitorbot.service.command.mdadm;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.telegram.telegrambots.meta.api.methods.send.SendMessage;
|
||||||
|
import ru.ldeloff.servermonitorbot.model.Command;
|
||||||
|
import ru.ldeloff.servermonitorbot.model.SshServer;
|
||||||
|
import ru.ldeloff.servermonitorbot.model.User;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.command.CommandTemplate;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.role.RoleService;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.ssh.SshService;
|
||||||
|
import ru.ldeloff.servermonitorbot.service.user.UserService;
|
||||||
|
import ru.ldeloff.servermonitorbot.utils.SshServerUtils;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class MdadmStatusCommand extends CommandTemplate {
|
||||||
|
|
||||||
|
final SshService sshService;
|
||||||
|
|
||||||
|
public MdadmStatusCommand(UserService userService, RoleService roleService, SshService sshService) {
|
||||||
|
super(userService, roleService);
|
||||||
|
this.sshService = sshService;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SendMessage actionForAuth(User user, SendMessage message) {
|
||||||
|
String [] tags = Arrays.stream(message.getText().split(":"))
|
||||||
|
.map(String::trim)
|
||||||
|
.toArray(String[]::new);
|
||||||
|
|
||||||
|
if (tags[1].equals("all")) {
|
||||||
|
message.setText(mdadmStatusAllHost());
|
||||||
|
} else {
|
||||||
|
message.setText(Objects.requireNonNull(mdadmStatusSpecificHost(tags[1])));
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String mdadmStatusAllHost() {
|
||||||
|
List<SshServer> servers = SshServerUtils.filterGoodServers(sshService.getSshServers());
|
||||||
|
StringBuilder response = new StringBuilder();
|
||||||
|
servers.forEach(server -> response.append(mdadmStatusSpecificHost(server.getName())).append("\n"));
|
||||||
|
return response.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String mdadmStatusSpecificHost(String serverName) {
|
||||||
|
Optional<SshServer> server = sshService.getSshServers()
|
||||||
|
.stream()
|
||||||
|
.filter(x -> x.getName().equals(serverName))
|
||||||
|
.findFirst();
|
||||||
|
if (server.isPresent()) {
|
||||||
|
// узнаю скок рейдов
|
||||||
|
Command commandRaid = sshService.execute(new Command("mdadm --detail --scan", 500, server.get()));
|
||||||
|
List<String> raidNames = parseRaidNames(commandRaid);
|
||||||
|
// Для каждого рейда надо выяснить статус
|
||||||
|
StringBuilder result = new StringBuilder();
|
||||||
|
raidNames.forEach(raid -> {
|
||||||
|
result.append(raid).append(":\n");
|
||||||
|
Command commandHdd = sshService.execute(new Command("mdadm --detail " + raid, 500, server.get()));
|
||||||
|
List<String> hdds = parseHddState(commandHdd);
|
||||||
|
hdds.forEach(hdd -> result.append(hdd).append("\n"));
|
||||||
|
});
|
||||||
|
return server.get().getName() + ": \n" + result;
|
||||||
|
} else {
|
||||||
|
log.error("Ошибка при выполнении команды 'mdadm'. Искомый сервер (" + serverName + ") не найден");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private List<String> parseRaidNames(Command result) {
|
||||||
|
List<String> names = new ArrayList<>();
|
||||||
|
Arrays.stream(result.getResponse().split("\n"))
|
||||||
|
.map(line -> line.split(" "))
|
||||||
|
.filter(lineArray -> lineArray.length >= 2)
|
||||||
|
.map(lineArray -> lineArray[1])
|
||||||
|
.forEach(names::add);
|
||||||
|
return names;
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<String> parseHddState(Command result) {
|
||||||
|
List<String> names = new ArrayList<>();
|
||||||
|
|
||||||
|
String[] lines = result.getResponse().split("\n");
|
||||||
|
|
||||||
|
boolean foundHeader = false;
|
||||||
|
|
||||||
|
for (String line : lines) {
|
||||||
|
if (!foundHeader) {
|
||||||
|
if ( line.contains("Number") &&
|
||||||
|
line.contains("Major") &&
|
||||||
|
line.contains("Minor") &&
|
||||||
|
line.contains("RaidDevice") ) {
|
||||||
|
foundHeader = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
List<String> elements = Arrays.stream(line.split(" "))
|
||||||
|
.filter(x -> !Objects.equals(x, "")).toList();
|
||||||
|
names.add("Number Name State");
|
||||||
|
names.add(elements.get(0) + ", "
|
||||||
|
+ elements.get(6) + ", "
|
||||||
|
+ elements.get(4) + " "
|
||||||
|
+ elements.get(5));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return names;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -15,6 +15,7 @@ public class TelegramBotKeyboard implements UiFormer {
|
|||||||
private final String UNAME = "uname";
|
private final String UNAME = "uname";
|
||||||
private final String CPU_TEMP = "CPU.temp";
|
private final String CPU_TEMP = "CPU.temp";
|
||||||
private final String HDD_TEMP = "HDD.temp";
|
private final String HDD_TEMP = "HDD.temp";
|
||||||
|
private final String MDADM = "MDADM";
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -32,6 +33,7 @@ public class TelegramBotKeyboard implements UiFormer {
|
|||||||
keyboardRow.add(new KeyboardButton(UNAME));
|
keyboardRow.add(new KeyboardButton(UNAME));
|
||||||
keyboardRow.add(new KeyboardButton(CPU_TEMP));
|
keyboardRow.add(new KeyboardButton(CPU_TEMP));
|
||||||
keyboardRow.add(new KeyboardButton(HDD_TEMP));
|
keyboardRow.add(new KeyboardButton(HDD_TEMP));
|
||||||
|
keyboardRow.add(new KeyboardButton(MDADM));
|
||||||
|
|
||||||
replyKeyboardMarkup.setKeyboard(keyboardRows);
|
replyKeyboardMarkup.setKeyboard(keyboardRows);
|
||||||
message.setReplyMarkup(replyKeyboardMarkup);
|
message.setReplyMarkup(replyKeyboardMarkup);
|
||||||
|
|||||||
@@ -2,20 +2,14 @@ spring:
|
|||||||
application:
|
application:
|
||||||
name: ServerMonitorBot
|
name: ServerMonitorBot
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:postgresql://localhost:5432/servermonitorbot
|
url: jdbc:postgresql://db:5432/servermonitorbot
|
||||||
username: servermonitorbot
|
username: servermonitorbot
|
||||||
password: servermonitorbot
|
password: servermonitorbot
|
||||||
jpa:
|
jpa:
|
||||||
hibernate:
|
hibernate:
|
||||||
ddl-auto: none
|
ddl-auto: none
|
||||||
liquibase:
|
flyway:
|
||||||
enabled: true
|
locations: classpath:db/migration
|
||||||
change-log: classpath:db/scripts/changelog-master.xml
|
|
||||||
url: jdbc:postgresql://localhost:5432/servermonitorbot
|
|
||||||
user: servermonitorbot
|
|
||||||
password: servermonitorbot
|
|
||||||
liquibase-schema: "liquibase"
|
|
||||||
default-schema: "servermonitorbot"
|
|
||||||
bot:
|
bot:
|
||||||
name: "ServerMonitorBot"
|
name: "ServerMonitorBot"
|
||||||
token: "token"
|
token: "token"
|
||||||
@@ -30,6 +24,12 @@ ssh:
|
|||||||
port: 22
|
port: 22
|
||||||
user: "user"
|
user: "user"
|
||||||
password: "pass"
|
password: "pass"
|
||||||
|
-
|
||||||
|
name: "Server Name 2"
|
||||||
|
host: "url 2"
|
||||||
|
port: 22
|
||||||
|
user: "user 2"
|
||||||
|
password: "pass 2"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
--liquibase formatted sql
|
|
||||||
|
|
||||||
--changeset L_DelOff:create_table_users rollbackSplitStatements:true
|
--changeset L_DelOff:create_table_users rollbackSplitStatements:true
|
||||||
--comment: Создание таблицы пользователей
|
--comment: Создание таблицы пользователей
|
||||||
CREATE TABLE users
|
CREATE TABLE users
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
--liquibase formatted sql
|
|
||||||
|
|
||||||
--changeset L_DelOff:create_table_roles rollbackSplitStatements:true
|
--changeset L_DelOff:create_table_roles rollbackSplitStatements:true
|
||||||
--comment: Создание таблицы ролей
|
--comment: Создание таблицы ролей
|
||||||
CREATE TABLE roles
|
CREATE TABLE roles
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<databaseChangeLog
|
|
||||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
|
||||||
|
|
||||||
<include file="release_0_0_1/changelog.xml" relativeToChangelogFile="true"/>
|
|
||||||
|
|
||||||
|
|
||||||
</databaseChangeLog>
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<databaseChangeLog
|
|
||||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
|
||||||
|
|
||||||
<include file="scripts/01_create_table_users.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/02_create_table_roles.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/03_add_FK_users_to_roles.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/04_add_roles.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/05_add_anonymous_role.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/06_refactor_users_table.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/07_refactor_roles_table.sql" relativeToChangelogFile="true"/>
|
|
||||||
<include file="scripts/08_add_roles.sql" relativeToChangelogFile="true"/>
|
|
||||||
|
|
||||||
</databaseChangeLog>
|
|
||||||
Reference in New Issue
Block a user