2021-03-12 00:39:39 +00:00
|
|
|
import sys
|
2021-03-30 21:55:04 +00:00
|
|
|
import os
|
2021-03-12 00:39:39 +00:00
|
|
|
import pysftp
|
|
|
|
import paramiko
|
2021-03-30 21:55:04 +00:00
|
|
|
import ftplib
|
2021-03-12 00:39:39 +00:00
|
|
|
|
|
|
|
from utils.consoleoutput import oColors
|
2021-03-30 21:55:04 +00:00
|
|
|
from handlers.handle_config import configurationValues
|
2021-03-12 00:39:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def createSFTPConnection():
|
2021-03-30 21:55:04 +00:00
|
|
|
configValues = configurationValues()
|
2021-03-12 00:39:39 +00:00
|
|
|
cnopts = pysftp.CnOpts()
|
|
|
|
cnopts.hostkeys = None # TODO fix this
|
|
|
|
try:
|
2021-03-30 21:55:04 +00:00
|
|
|
sftp = pysftp.Connection(configValues.sftp_server, username=configValues.sftp_user, \
|
|
|
|
password=configValues.sftp_password, port=configValues.sftp_port, cnopts=cnopts)
|
2021-03-12 00:39:39 +00:00
|
|
|
except paramiko.ssh_exception.AuthenticationException:
|
|
|
|
print(oColors.brightRed + "[SFTP]: Wrong Username/Password" + oColors.standardWhite)
|
|
|
|
except paramiko.ssh_exception.SSHException:
|
|
|
|
print(oColors.brightRed + "[SFTP]: The SFTP server isn't available." + oColors.standardWhite)
|
|
|
|
try:
|
|
|
|
return sftp
|
|
|
|
except UnboundLocalError:
|
|
|
|
print(oColors.brightRed + "[SFTP]: Check your config.ini!" + oColors.standardWhite)
|
|
|
|
print(oColors.brightRed + "Exiting program..." + oColors.standardWhite)
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
def sftp_showPlugins(sftp):
|
|
|
|
sftp.cd('plugins')
|
|
|
|
for attr in sftp.listdir_attr():
|
|
|
|
print(attr.filename, attr)
|
|
|
|
|
|
|
|
|
|
|
|
def sftp_cdPluginDir(sftp):
|
|
|
|
sftp.cd('plugins')
|
|
|
|
|
|
|
|
|
|
|
|
def sftp_upload_file(sftp, itemPath):
|
|
|
|
try:
|
|
|
|
sftp.chdir('plugins')
|
|
|
|
sftp.put(itemPath)
|
|
|
|
|
|
|
|
except FileNotFoundError:
|
2021-03-13 21:09:32 +00:00
|
|
|
print(oColors.brightRed + "The 'plugins' folder couldn*t be found on the remote host!" + oColors.standardWhite)
|
2021-03-30 21:55:04 +00:00
|
|
|
print(oColors.brightRed + "Aborting uploading." + oColors.standardWhite)
|
2021-03-12 00:39:39 +00:00
|
|
|
sftp.close()
|
|
|
|
|
|
|
|
|
2021-03-15 15:26:00 +00:00
|
|
|
def sftp_upload_server_jar(sftp, itemPath):
|
|
|
|
try:
|
|
|
|
sftp.chdir('.')
|
|
|
|
sftp.put(itemPath)
|
|
|
|
except FileNotFoundError:
|
2021-03-30 21:55:04 +00:00
|
|
|
print(oColors.brightRed + "The 'root' folder couldn*t be found on the remote host!" + oColors.standardWhite)
|
|
|
|
print(oColors.brightRed + "Aborting uploading." + oColors.standardWhite)
|
2021-03-15 15:26:00 +00:00
|
|
|
sftp.close()
|
|
|
|
|
|
|
|
|
2021-03-12 00:39:39 +00:00
|
|
|
def sftp_listAll(sftp):
|
|
|
|
try:
|
|
|
|
sftp.chdir('plugins')
|
|
|
|
installedPlugins = sftp.listdir()
|
|
|
|
except FileNotFoundError:
|
2021-03-13 21:09:32 +00:00
|
|
|
print(oColors.brightRed + "The 'plugins' folder couldn*t be found on the remote host!" + oColors.standardWhite)
|
2021-03-12 00:39:39 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
return installedPlugins
|
|
|
|
except UnboundLocalError:
|
2021-03-15 15:26:00 +00:00
|
|
|
print(oColors.brightRed + "No plugins were found." + oColors.standardWhite)
|
|
|
|
|
|
|
|
|
|
|
|
def sftp_listFilesInServerRoot(sftp):
|
|
|
|
try:
|
|
|
|
filesInServerRoot = sftp.listdir()
|
|
|
|
except FileNotFoundError:
|
|
|
|
print(oColors.brightRed + "The 'root' folder couldn*t be found on the remote host!" + oColors.standardWhite)
|
|
|
|
|
|
|
|
try:
|
|
|
|
return filesInServerRoot
|
|
|
|
except UnboundLocalError:
|
2021-03-30 21:55:04 +00:00
|
|
|
print(oColors.brightRed + "No Serverjar was found." + oColors.standardWhite)
|
|
|
|
|
|
|
|
|
|
|
|
def sftp_downloadFile(sftp, downloadPath, fileToDownload):
|
|
|
|
configValues = configurationValues()
|
|
|
|
sftp.cwd(configValues.sftp_folderPath)
|
|
|
|
currentDirectory = os.getcwd()
|
|
|
|
os.chdir('TempSFTPFolder')
|
|
|
|
sftp.get(fileToDownload)
|
|
|
|
sftp.close()
|
|
|
|
os.chdir(currentDirectory)
|
|
|
|
|