Dateien nach "/" hochladen

This commit is contained in:
M_Viper 2024-01-25 20:07:38 +01:00
parent 59bf55134b
commit 366e09340a
3 changed files with 186 additions and 0 deletions

33
readme Normal file
View File

@ -0,0 +1,33 @@
Fogendes muss installiert werden
Installieren sie unter Windows nodejs dies können sie unter folgendem Link herunterladen
https://nodejs.org/en
Befehle
npm init -y
npm install ping node-telegram-bot-api js-yaml moment yml dotenv fs request fs
Einzelne Befehle:
npm install
npm init
npm install ping
npm install node-telegram-bot-api
npm install js-yaml
npm install moment
npm install yml
npm install dotenv
npm install fs request
npm install fs
zum Instrallieren unter Linux nutzen Sie den Befehl
./install.sh

88
setup.bat Normal file
View File

@ -0,0 +1,88 @@
@echo off
setlocal EnableDelayedExpansion
REM Überprüfen, ob Node.js installiert ist
where node >nul 2>nul
if %errorlevel% neq 0 (
echo Node.js ist nicht installiert. Installiere Node.js automatisch...
REM Automatische Installation von Node.js, abhängig vom Windows-System
if exist %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe (
powershell -Command "Invoke-WebRequest -Uri https://nodejs.org/dist/v14.17.0/node-v14.17.0-x64.msi -OutFile node_installer.msi"
Start-Process msiexec -ArgumentList "/i node_installer.msi /quiet" -Wait
del node_installer.msi
) else (
echo Automatische Installation von Node.js wird nicht unterstützt. Bitte installieren Sie Node.js manuell und führen Sie das Skript erneut aus.
exit /b 1
)
)
REM Laden Sie die Umgebungsvariablen aus der .env-Datei
if exist .env (
for /f "delims=" %%a in (.env) do set "%%a"
) else (
echo .env-Datei nicht gefunden. Stellen Sie sicher, dass die Datei vorhanden ist und versuchen Sie es erneut.
exit /b 1
)
REM Erstellen Sie ein neues Node.js-Projekt mit npm init und verwenden Sie Umgebungsvariablen
echo Creating a new Node.js project...
echo Project name: !PROJECT_NAME!
echo Version: 1.0.0
echo Description: Node.js project
echo Entry point: server_monitor_bot.js
echo Test command:
echo Git repository: https://git.viper.ipv64.net/M_Viper/telegram_server_monitoring
echo Keywords:
echo Author: M_Viper
echo License: ISC
npm init -y
REM Installieren Sie die benötigten Pakete
npm install ping
npm install node-telegram-bot-api
npm install js-yaml
npm install moment
npm install yml
npm install dotenv
npm install fs
npm install request
REM Installieren Sie pm2, wenn es noch nicht installiert ist
where pm2 >nul 2>nul
if %errorlevel% neq 0 (
npm install pm2 -g
)
REM Erstellen Sie ein Startskript für den Bot
echo Creating start script...
echo #!/bin/bash > start_bot.sh
echo pm2 start server_monitor_bot.js >> start_bot.sh
echo chmod +x start_bot.sh
REM Erstellen Sie ein Autostart-Skript für den Bot
echo Creating autostart script...
echo [Unit] > telegram_bot.service
echo Description=Telegram Server Monitoring Bot >> telegram_bot.service
echo [Service] >> telegram_bot.service
echo ExecStart=/path/to/start_bot.sh >> telegram_bot.service
echo [Install] >> telegram_bot.service
echo WantedBy=default.target >> telegram_bot.service
move telegram_bot.service "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\"
REM Erstellen Sie die benötigten Dateien
type nul > user_information.yml
type nul > error.log
type nul > configurations.yml
REM Erstellen Sie das Desktop-Icon
set shortcutPath=%USERPROFILE%\Desktop\TelegramBot.lnk
set targetPath=%cd%\start_bot.sh
echo [InternetShortcut] >"%shortcutPath%"
echo URL=file:///%targetPath% >>"%shortcutPath%"
echo IconFile=%SystemRoot%\System32\imageres.dll >>"%shortcutPath%"
echo IconIndex=112 >>"%shortcutPath%"
echo Desktop-Icon wurde erstellt: %shortcutPath%

65
setup.sh Normal file
View File

@ -0,0 +1,65 @@
#!/bin/bash
# Überprüfen, ob Node.js installiert ist
if ! command -v node &> /dev/null; then
echo "Node.js ist nicht installiert. Installiere Node.js automatisch..."
# Automatische Installation von Node.js, abhängig vom Linux-System
if command -v apt &> /dev/null; then
sudo apt update
sudo apt install -y nodejs
elif command -v yum &> /dev/null; then
sudo yum install -y nodejs
else
echo "Automatische Installation von Node.js wird nicht unterstützt. Bitte installieren Sie Node.js manuell und führen Sie das Skript erneut aus."
exit 1
fi
fi
# Laden Sie die Umgebungsvariablen aus der .env-Datei
source .env
# Erstellen Sie ein neues Node.js-Projekt mit npm init und verwenden Sie Umgebungsvariablen
echo -e "Creating a new Node.js project..."
echo -e "Project name: $PROJECT_NAME"
echo -e "Version: 1.0.0"
echo -e "Description: Node.js project"
echo -e "Entry point: server_monitor_bot.js" # Hier Dateinamen anpassen
echo -e "Test command: "
echo -e "Git repository: https://git.viper.ipv64.net/M_Viper/telegram_server_monitoring"
echo -e "Keywords: "
echo -e "Author: M_Viper"
echo -e "License: ISC"
npm init -y
# Installieren Sie die benötigten Pakete
npm install ping
npm install node-telegram-bot-api
npm install js-yaml
npm install moment
npm install yml
npm install dotenv
npm install fs
npm install request
# Installieren Sie pm2, wenn es noch nicht installiert ist
if ! command -v pm2 &> /dev/null; then
npm install pm2 -g
fi
# Erstellen Sie ein Startskript für den Bot
echo -e "Creating start script..."
echo -e "#!/bin/bash\n\npm2 start server_monitor_bot.js" > start_bot.sh # Hier Dateinamen anpassen
chmod +x start_bot.sh
# Erstellen Sie ein Autostart-Skript für den Bot
echo -e "Creating autostart script..."
echo -e "[Unit]\nDescription=Telegram Server Monitoring Bot\n\n[Service]\nExecStart=/path/to/start_bot.sh\n\n[Install]\nWantedBy=default.target" > telegram_bot.service
sudo mv telegram_bot.service /etc/systemd/system/
sudo systemctl enable telegram_bot
# Erstellen Sie die benötigten Dateien
touch user_information.yml
touch error.log
touch configurations.yml