Compare commits

...

6 Commits

Author SHA1 Message Date
Lukas 1c78b0b374 Fix nextcloud upload urls 2021-05-23 01:14:11 +02:00
Lukas 96b2bb7ae1 „grail_build.cfg“ löschen 2021-05-23 00:31:25 +02:00
Lukas 39ae5f83d1 Edit Readme to include 0.6.0 Release 2021-05-22 21:33:53 +02:00
Lukas c94a7276be 1. Add Nextcloud as upload option
2. Rewrite ini file with inline comments
3. Fix local Upload

v. 0.6
2021-05-22 21:20:11 +02:00
Lukas 3d9f3d6cf3 Change Readme 2021-05-13 17:34:24 +02:00
Lukas 7123d78adc add precompiled link to readme 2021-01-17 17:26:53 +01:00
3 changed files with 145 additions and 63 deletions

View File

@ -1,10 +1,14 @@
# Grail
* Author: Lukas Mahler
* Copyright: (C)2018-2021
* Version: 0.5.1
* Date: 16.01.2021
*********************************
Instant Upload Screenshot-Tool based on the idea of Gyazoo.
**->** **MS Windows only!**
*********************************
Version: 0.6.1
Date: 23.05.2021
## Description:
Instant Upload Screenshot-Tool based on the idea of Gyazoo.
[Edit the settings.ini file for online upload (using either SFTP or Nextcloud)]
->Currently Windows only!
## Precompiled:
[Download](https://git.lukasmahler.de/attachments/607f8474-4c42-4c89-a245-3cbd4b66be58 "0.6.1")

177
grail.py
View File

@ -1,7 +1,7 @@
__author__ = "Lukas Mahler"
__copyright__ = "Copyright 2018-2021"
__version__ = "0.5.1"
__date__ = "16.01.2021"
__version__ = "0.6.1"
__date__ = "23.05.2021"
__email__ = "lm@ankerlab.de"
__status__ = "Development"
@ -12,6 +12,7 @@ try:
import sys
import webbrowser
from io import BytesIO
from requests import head
from shutil import rmtree
from getpass import getpass
from tempfile import gettempdir
@ -25,6 +26,7 @@ try:
from fillscreen import Ui_View
# Customs
import owncloud
import win32gui
import win32clipboard
import paramiko
@ -49,7 +51,7 @@ class Fillscreen(QtWidgets.QWidget, Ui_View):
###############################################################################################
###############################################################################################
# Bastelstüble wegen Transparentem Window welches aber den Input auf unterliegendes blockieren soll
# Monkeycode for trying to block input for content under the transparent window.
# self.setAttribute(QtCore.Qt.WA_TranslucentBackground, True)
# self.setBackgroundRole(QtGui.QPalette.Base)
@ -121,42 +123,69 @@ class Fillscreen(QtWidgets.QWidget, Ui_View):
###################################################################################################
###################################################################################################
###################################################################################################
def sslurl(url, ssl):
if ssl:
url = "https://" + url
else:
url = "http://" + url
return url
def read_ini(rootdir):
myini = {}
config = ConfigParser()
config = ConfigParser(inline_comment_prefixes=";")
try:
config.read_file(open(rootdir+'settings.ini'))
except Exception as e:
print("ERROR: Couldn't locate a 'settings.ini' |||", e)
config.read_file(open(rootdir + 'settings.ini'))
except FileNotFoundError:
print("ERROR: Couldn't locate a 'settings.ini'")
print("--> Trying to create new blank one.")
# Creating new blank ini
with open(rootdir+'settings.ini', 'w') as f:
txt = "[MAIN]\n" \
"# MODE EITHER ONLINE OR OFFLINE\nMODE = OFFLINE\n\n\n" \
"# IF MODE IS ONLINE PROVIDE THE SFTP INFO BELOW\n" \
"[ONLINE]\n\n" \
"# URL EITHER IS AN IP OR A FQDN\nURL = \n\n" \
"# PORT IS THE SSH PORT\nPORT = 22\n\n" \
"# THE TIME IN SECONDS TO TRY TO CONNECT\nTIMEOUT = 5\n\n" \
"# YOUR SSH USER, THIS CAN BE BLANK TO GET ASKED INTERACTIVELY\nUSR = \nPASS = \n\n" \
"# THE LOCAL SERVER PATH WHERE TO PUT THE SCREENSHOT\nPTH = ./Screens/\n\n" \
"# THIS SHOULD BE THE FULL ONLINE URL\nWHERE = \n\n\n" \
"# IF MODE IS OFFLINE YOU MAY CHANGE THE SETTINGS BELOW\n" \
"[OFFLINE]\n\n" \
"WHERE = "
with open(rootdir + 'settings.ini', 'w') as f:
txt = (
"# MAIN SETTINGS\n"
"[MAIN]\n"
"MODE = LOCAL ; MODE EITHER SFTP, NEXTCLOUD OR LOCAL\n"
"TIMEOUT = 5 ; TIMEOUT WHEN TESTING SFTP CONNECTION\n"
"SSL = TRUE ; USING HTTP (FALSE) OR HTTPS (TRUE) URLS\n"
"\n"
"# PROVIDE SFTP INFO BELOW\n"
"[SFTP]\n"
"URL = ; URL EITHER IS AN IP OR A FQDN\n"
"PORT = ; PORT IS THE SSH PORT\n"
"USR = ; YOUR SSH USER, THIS CAN BE BLANK TO GET ASKED INTERACTIVELY\n"
"PASS = ; YOUR SSH USERS PW, THIS CAN BE BLANK TO GET ASKED INTERACTIVELY\n"
"PTH = ; THE LOCAL SERVER PATH WHERE TO PUT THE SCREENSHOT\n"
"WHERE = ; THIS SHOULD BE THE FULL ONLINE URL\n"
"\n"
"# PROVIDE NEXTCLOUD INFO BELOW\n"
"[NEXTCLOUD]\n"
"URL = ; URL EITHER IS AN IP OR A FQDN OF A NEXTCLOUD SERVER\n"
"USR = ; YOUR NEXTCLOUD USER, THIS CAN BE BLANK TO GET ASKED INTERACTIVELY\n"
"PASS = ; YOUR NEXTCLOUD USERS PW, THIS CAN BE BLANK TO GET ASKED INTERACTIVELY\n"
"PTH = ; THE NEXTCLOUD FOLDER PATH WHERE TO PUT THE SCREENSHOT\n"
"\n"
"# IF MODE IS LOCAL YOU MAY CHANGE THE SETTINGS BELOW\n"
"[LOCAL]\n"
"WHERE = ; THIS SHOULD BE A FULL LOCAL PATH\n"
)
f.write(txt)
config.read_file(open(rootdir + 'settings.ini'))
# General Settings
timeout = int(config.get('MAIN', 'TIMEOUT'))
ssl = config.get('MAIN', 'SSL')
mode = config.get('MAIN', 'MODE')
if mode == "ONLINE":
url = config.get('ONLINE', 'URL')
port = int(config.get('ONLINE', 'PORT'))
timeout = int(config.get('ONLINE', 'TIMEOUT'))
usr = config.get('ONLINE', 'USR')
passw = config.get('ONLINE', 'PASS')
pth = config.get('ONLINE', 'PTH')
where = config.get('ONLINE', 'WHERE')
if mode == "SFTP":
url = config.get(mode, 'URL')
port = int(config.get(mode, 'PORT'))
usr = config.get(mode, 'USR')
passw = config.get(mode, 'PASS')
pth = config.get(mode, 'PTH')
where = config.get(mode, 'WHERE')
myini.update(
MODE = mode,
URL = url,
@ -165,10 +194,22 @@ def read_ini(rootdir):
USR = usr,
PASS = passw,
PTH = pth,
WHERE = where
WHERE = sslurl(where, ssl)
)
elif mode == "OFFLINE":
where = config.get('OFFLINE', 'WHERE')
elif mode == "NEXTCLOUD":
url = sslurl(config.get(mode, 'URL'), ssl)
usr = config.get(mode, 'USR')
passw = config.get(mode, 'PASS')
pth = config.get(mode, 'PTH')
myini.update(
MODE = mode,
URL = url,
USR = usr,
PASS = passw,
PTH = pth,
)
elif mode == "LOCAL":
where = config.get('LOCAL', 'WHERE')
myini.update(
MODE = mode,
WHERE = where
@ -228,17 +269,19 @@ def do_screen(start, end):
im = getRectAsImage(frame)
send_to_clipboard(im)
timestamp = strftime("%Y-%m-%d_%H.%M.%S")
timestamp = strftime("%Y-%m-%d_%H-%M-%S")
tempdir = gettempdir()+"\\Screens"
# print("DEBUG:",tempdir)
if not os.path.exists(tempdir):
os.makedirs(tempdir)
tempsave = '{0}\\{1}.png'.format(tempdir, 'Screen_'+timestamp)
tempsave = '{0}\\{1}.png'.format(tempdir, timestamp)
im.save(tempsave)
if settings['MODE'] == "ONLINE":
upload_to_url(tempsave)
if settings['MODE'] == "SFTP":
upload_to_url_sftp(tempsave)
elif settings['MODE'] == "NEXTCLOUD":
upload_to_url_nextcloud(tempsave)
else:
save_to_local(tempsave)
@ -263,7 +306,7 @@ def send_to_clipboard(im=None):
# https://stackoverflow.com/questions/432385/sftp-in-python-platform-independent
def upload_to_url(tempsave):
def upload_to_url_sftp(tempsave):
# SFTP INFO
url = settings['URL']
@ -280,13 +323,13 @@ def upload_to_url(tempsave):
s.close()
except Exception as e:
print("ERROR: Connection failed. |||", e)
print("\nFalling back to local save...")
print("\n --> Falling back to local mode")
save_to_local(tempsave, fallback=1)
return
# If not provided ask for Username & Password
if not usr:
usr = input("Please provide your Username: ")
usr = input("Please provide a username: ")
if not passw:
passw = getpass("Please provide the password for {0}: ".format(usr))
@ -296,7 +339,7 @@ def upload_to_url(tempsave):
transport.connect(username=usr, password=passw)
except Exception as e:
print("ERROR: SSH2 negotiation or authentication failed. |||", e)
print("\nFalling back to local save...")
print("\n--> Falling back to local mode")
save_to_local(tempsave, fallback=1)
return
@ -310,6 +353,51 @@ def upload_to_url(tempsave):
open_url(where)
def upload_to_url_nextcloud(tempsave):
# NEXTCLOUD INFO
url = settings['URL']
usr = settings['USR']
passw = settings['PASS']
pth = settings['PTH'] + os.path.basename(tempsave)
# Test Connection first or go into fallback
r = head(url)
httpc = str(r.status_code)[0]
if httpc == "4" or httpc == "5":
print("ERROR: HTTP Statuscode for URL [{0}] is [{1}]".format(url, r.status_code))
print("\n--> Falling back to local mode")
save_to_local(tempsave, fallback=1)
return
# If not provided ask for Username & Password
if not usr:
usr = input("Please provide a username: ")
if not passw:
passw = getpass("Please provide the password for {0}: ".format(usr))
try:
nxt = owncloud.Client(url)
nxt.login(usr, passw)
except Exception as e:
print("ERROR: ", e)
print("\n--> Falling back to local mode")
save_to_local(tempsave, fallback=1)
return
# Had to monkeypatch the pyocclient libary here to stop AttributeErrors on 'share_file_with_link' calls
# (https://github.com/owncloud/pyocclient/issues/263)
print("Starting to Upload...")
nxt.put_file(pth, tempsave)
link_info = nxt.share_file_with_link(pth)
where = link_info.get_link()
print("Screen was Uploaded: URL: " + where)
open_url(where)
def save_to_local(tempsave, fallback=None):
if not fallback:
@ -317,14 +405,14 @@ def save_to_local(tempsave, fallback=None):
else:
print(" -> Did fallback!")
config = ConfigParser()
config.read_file(open(root+'_settings.ini'))
where = config.get('OFFLINE', 'WHERE')
config.read_file(open(root+'settings.ini'))
where = config.get('LOCAL', 'WHERE')
if not where:
print("No local Screens folder provided, creating one...")
where = os.path.dirname(os.path.abspath(__file__))+"\\Screens"
print("OFFLINE MODE: Screenshot Folder:", where)
print("LOCAL MODE: Screenshot Folder:", where)
if not os.path.exists(where):
os.makedirs(where)
@ -333,6 +421,7 @@ def save_to_local(tempsave, fallback=None):
dst = where + "\\" + os.path.basename(tempsave)
# print("Source:",src,"\nDestination:",dst)
os.rename(src, dst)
os.startfile(dst)
def open_url(where):

View File

@ -1,11 +0,0 @@
[ship]
param = --onefile --windowed
icon = C:\Users\lukas\Desktop\Dump\08_Resources\camera.ico
[debug]
param = --onefile
icon = C:\Users\lukas\Desktop\Dump\08_Resources\camera.ico
[test]
param = --onedir --noupx --add-binary msvcp140.dll;.
icon = C:\Users\lukas\Desktop\Dump\08_Resources\camera.ico