mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
activate chromium desktop via cli
- added option to activate chromium desktop on startup via cli - save also actor, sensor, kettle and plugin information when log is downloaded
This commit is contained in:
parent
563fae9359
commit
bee645ff96
4 changed files with 79 additions and 8 deletions
|
@ -1 +1 @@
|
|||
__version__ = "4.0.0.58"
|
||||
__version__ = "4.0.0.59"
|
||||
|
|
37
cbpi/cli.py
37
cbpi/cli.py
|
@ -61,6 +61,12 @@ def create_config_file():
|
|||
srcfile = os.path.join(os.path.dirname(__file__), "config", "craftbeerpi.service")
|
||||
destfile = os.path.join(".", 'config')
|
||||
shutil.copy(srcfile, destfile)
|
||||
|
||||
if os.path.exists(os.path.join(".", 'config', "chromium.desktop")) is False:
|
||||
srcfile = os.path.join(os.path.dirname(__file__), "config", "chromium.desktop")
|
||||
destfile = os.path.join(".", 'config')
|
||||
shutil.copy(srcfile, destfile)
|
||||
|
||||
print("Config Folder created")
|
||||
|
||||
|
||||
|
@ -184,6 +190,21 @@ def plugins_add(package_name):
|
|||
return
|
||||
return
|
||||
|
||||
if package_name == 'chromium':
|
||||
print("Add chromium.desktop to /etc/xdg/autostart/")
|
||||
try:
|
||||
if os.path.exists(os.path.join("/etc/xdg/autostart/","chromium.desktop")) is False:
|
||||
srcfile = os.path.join(".", "config", "chromium.desktop")
|
||||
destfile = os.path.join("/etc/xdg/autostart/")
|
||||
shutil.copy(srcfile, destfile)
|
||||
print("Copied chromium.desktop to /etc/xdg/autostart/")
|
||||
else:
|
||||
print("chromium.desktop is already located in /etc/xdg/autostart/")
|
||||
except Exception as e:
|
||||
print(e)
|
||||
return
|
||||
return
|
||||
|
||||
try:
|
||||
with open(os.path.join(".", 'config', "config.yaml"), 'rt') as f:
|
||||
data = yaml.load(f, Loader=yaml.FullLoader)
|
||||
|
@ -230,6 +251,18 @@ def plugin_remove(package_name):
|
|||
return
|
||||
return
|
||||
|
||||
if package_name == 'chromium':
|
||||
print("Remove chromium.desktop from /etc/xdg/autostart/")
|
||||
try:
|
||||
if os.path.exists(os.path.join("/etc/xdg/autostart/","chromium.desktop")) is True:
|
||||
os.remove(os.path.join("/etc/xdg/autostart/","chromium.desktop"))
|
||||
print("Deleted chromium.desktop from /etc/xdg/autostart/")
|
||||
else:
|
||||
print("chromium.desktop is not located in /etc/xdg/autostart/")
|
||||
except Exception as e:
|
||||
print(e)
|
||||
return
|
||||
return
|
||||
|
||||
|
||||
try:
|
||||
|
@ -366,14 +399,14 @@ def plugins():
|
|||
@click.command()
|
||||
@click.argument('name')
|
||||
def add(name):
|
||||
'''Activate Plugin'''
|
||||
'''Activate Plugin, autostart or chromium '''
|
||||
plugins_add(name)
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.argument('name')
|
||||
def remove(name):
|
||||
'''Deactivate Plugin'''
|
||||
'''Deactivate Plugin, autostart or chromium'''
|
||||
plugin_remove(name)
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ import os
|
|||
import shutil
|
||||
import psutil
|
||||
import pathlib
|
||||
import json
|
||||
import aiohttp
|
||||
from voluptuous.schema_builder import message
|
||||
from cbpi.api.dataclasses import NotificationAction, NotificationType
|
||||
|
@ -43,19 +44,56 @@ class SystemController:
|
|||
async def downloadlog(self, logtime):
|
||||
filename = "cbpi4.log"
|
||||
fullname = pathlib.Path(os.path.join(".",filename))
|
||||
pluginname = "cbpi4_plugins.txt"
|
||||
fullpluginname = pathlib.Path(os.path.join(".",pluginname))
|
||||
actorname = "cbpi4_actors.txt"
|
||||
fullactorname = pathlib.Path(os.path.join(".",actorname))
|
||||
sensorname = "cbpi4_sensors.txt"
|
||||
fullsensorname = pathlib.Path(os.path.join(".",sensorname))
|
||||
kettlename = "cbpi4_kettles.txt"
|
||||
fullkettlename = pathlib.Path(os.path.join(".",kettlename))
|
||||
|
||||
output_filename="cbpi4_log.zip"
|
||||
|
||||
if logtime == "b":
|
||||
os.system('journalctl -b -u craftbeerpi.service > {}'.format(fullname))
|
||||
else:
|
||||
os.system('journalctl --since \"{} hours ago\" -u craftbeerpi.service > {}'.format(logtime, fullname))
|
||||
|
||||
zipObj=zipfile.ZipFile(output_filename , 'w', zipfile.ZIP_DEFLATED)
|
||||
zipObj.write(fullname)
|
||||
zipObj.close()
|
||||
os.remove(fullname)
|
||||
os.system('cbpi plugins > {}'.format(fullpluginname))
|
||||
|
||||
try:
|
||||
actors = self.cbpi.actor.get_state()
|
||||
json.dump(actors['data'],open(fullactorname,'w'),indent=4, sort_keys=True)
|
||||
sensors = self.cbpi.sensor.get_state()
|
||||
json.dump(sensors['data'],open(fullsensorname,'w'),indent=4, sort_keys=True)
|
||||
kettles = self.cbpi.kettle.get_state()
|
||||
json.dump(kettles['data'],open(fullkettlename,'w'),indent=4, sort_keys=True)
|
||||
except Exception as e:
|
||||
logging.info(e)
|
||||
self.cbpi.notify("Error", "Creation of files failed: {}".format(e), NotificationType.ERROR)
|
||||
|
||||
try:
|
||||
zipObj=zipfile.ZipFile(output_filename , 'w', zipfile.ZIP_DEFLATED)
|
||||
zipObj.write(fullname)
|
||||
zipObj.write(fullpluginname)
|
||||
zipObj.write(fullactorname)
|
||||
zipObj.write(fullsensorname)
|
||||
zipObj.write(fullkettlename)
|
||||
zipObj.close()
|
||||
except Exception as e:
|
||||
logging.info(e)
|
||||
self.cbpi.notify("Error", "Zip creation failed: {}".format(e), NotificationType.ERROR)
|
||||
|
||||
try:
|
||||
os.remove(fullname)
|
||||
os.remove(fullpluginname)
|
||||
os.remove(fullactorname)
|
||||
os.remove(fullsensorname)
|
||||
os.remove(fullkettlename)
|
||||
except Exception as e:
|
||||
logging.info(e)
|
||||
self.cbpi.notify("Error", "Removal of original files failed: {}".format(e), NotificationType.ERROR)
|
||||
|
||||
|
||||
def allowed_file(self, filename, extension):
|
||||
|
|
|
@ -7,7 +7,7 @@ from cbpi.api import *
|
|||
import xml.etree.ElementTree
|
||||
import sqlite3
|
||||
from voluptuous.schema_builder import message
|
||||
from cbpi.api.dataclasses import NotificationAction, NotificationType
|
||||
from cbpi.api.dataclasses import NotificationAction, NotificationType, Actor, Sensor, Kettle
|
||||
from cbpi.controller.kettle_controller import KettleController
|
||||
from cbpi.api.base import CBPiBase
|
||||
from cbpi.api.config import ConfigType
|
||||
|
|
Loading…
Reference in a new issue