Skip to content

Commit 12b2b0b

Browse files
committedDec 26, 2020
Create desktop entries from the code
1 parent 40349dc commit 12b2b0b

19 files changed

+64
-15
lines changed
 
File renamed without changes.

‎safeeyes/utility.py

+61-14
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import threading
3535
from distutils.version import LooseVersion
3636
from logging.handlers import RotatingFileHandler
37+
from pathlib import Path
3738

3839
import babel.core
3940
import babel.dates
@@ -60,6 +61,8 @@
6061
SYSTEM_PLUGINS_DIR = os.path.join(BIN_DIRECTORY, 'plugins')
6162
USER_PLUGINS_DIR = os.path.join(CONFIG_DIRECTORY, 'plugins')
6263
LOCALE_PATH = os.path.join(BIN_DIRECTORY, 'config/locale')
64+
SYSTEM_DESKTOP_FILE = os.path.join(BIN_DIRECTORY, "platform/safeeyes.desktop")
65+
SYSTEM_ICONS = os.path.join(BIN_DIRECTORY, "platform/icons")
6366
DESKTOP_ENVIRONMENT = None
6467
IS_WAYLAND = False
6568

@@ -362,35 +365,77 @@ def initialize_safeeyes():
362365
logging.info('Copy the config files to ~/.config/safeeyes')
363366

364367
style_dir_path = os.path.join(HOME_DIRECTORY, '.config/safeeyes/style')
365-
startup_dir_path = os.path.join(HOME_DIRECTORY, '.config/autostart')
366-
368+
367369
# Remove the ~/.config/safeeyes/safeeyes.json file
368370
delete(CONFIG_FILE_PATH)
369371

370-
# Remove the startup file
371-
delete(os.path.join(HOME_DIRECTORY, os.path.join(
372-
startup_dir_path, 'safeeyes.desktop')))
373-
374372
# Create the ~/.config/safeeyes/style directory
375373
mkdir(style_dir_path)
376-
mkdir(startup_dir_path)
377374

378375
# Copy the safeeyes.json
379376
shutil.copy2(SYSTEM_CONFIG_FILE_PATH, CONFIG_FILE_PATH)
380377
os.chmod(CONFIG_FILE_PATH, 0o777)
381378

382-
# Copy the new startup file
383-
try:
384-
os.symlink("/usr/share/applications/safeeyes.desktop",
385-
os.path.join(startup_dir_path, 'safeeyes.desktop'))
386-
except OSError:
387-
pass
388-
389379
# Copy the new style sheet
390380
if not os.path.isfile(STYLE_SHEET_PATH):
391381
shutil.copy2(SYSTEM_STYLE_SHEET_PATH, STYLE_SHEET_PATH)
392382
os.chmod(STYLE_SHEET_PATH, 0o777)
393383

384+
initialize_platform()
385+
386+
387+
def initialize_platform():
388+
"""
389+
Copy icons and generate desktop entries.
390+
"""
391+
logging.debug("Initialize the platform")
392+
393+
applications_dir_path = os.path.join(HOME_DIRECTORY, '.local/share/applications')
394+
icons_dir_path = os.path.join(HOME_DIRECTORY, '.local/share/icons')
395+
startup_dir_path = os.path.join(HOME_DIRECTORY, '.config/autostart')
396+
desktop_entry = os.path.join(applications_dir_path, 'safeeyes.desktop')
397+
startup_entry = os.path.join(startup_dir_path, 'safeeyes.desktop')
398+
399+
# Create the folders if not exist
400+
mkdir(applications_dir_path)
401+
mkdir(icons_dir_path)
402+
mkdir(startup_dir_path)
403+
404+
# Remove existing files
405+
delete(desktop_entry)
406+
delete(startup_entry)
407+
408+
# Create a destop entry
409+
try:
410+
os.symlink(SYSTEM_DESKTOP_FILE, desktop_entry)
411+
except OSError:
412+
logging.error("Failed to create desktop entry at %s" % desktop_entry)
413+
414+
# Create the new startup entry
415+
try:
416+
os.symlink(SYSTEM_DESKTOP_FILE, startup_entry)
417+
except OSError:
418+
logging.error("Failed to create startup entry at %s" % startup_entry)
419+
420+
# Add links for all icons
421+
for (path, _, filenames) in os.walk(SYSTEM_ICONS):
422+
for filename in filenames:
423+
system_icon = os.path.join(path, filename)
424+
local_icon = os.path.join(icons_dir_path, os.path.relpath(system_icon, SYSTEM_ICONS))
425+
parent_dir = str(Path(local_icon).parent)
426+
427+
# Create the directory if not exists
428+
mkdir(parent_dir)
429+
430+
# Remove the link if already exists
431+
delete(local_icon)
432+
433+
# Add a link for the icon
434+
try:
435+
os.symlink(system_icon, local_icon)
436+
except OSError:
437+
logging.error("Failed to create icon link at %s" % local_icon)
438+
394439

395440
def reset_config():
396441
# Remove the ~/.config/safeeyes/safeeyes.json and safeeyes_style.css
@@ -405,6 +450,8 @@ def reset_config():
405450
os.chmod(CONFIG_FILE_PATH, 0o777)
406451
os.chmod(STYLE_SHEET_PATH, 0o777)
407452

453+
initialize_platform()
454+
408455
def replace_style_sheet():
409456
"""
410457
Replace the user style sheet by system style sheet.

‎setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,12 @@ def __package_data():
6565
data = ['glade/*.glade', 'resource/*']
6666
data.extend(__package_files('safeeyes/config'))
6767
data.extend(__package_files('safeeyes/plugins'))
68+
data.extend(__package_files('safeeyes/platform'))
6869
return data
6970

7071

71-
__data_files = list(_data_files('share'))
72+
# __data_files = list(_data_files('share'))
73+
__data_files = list()
7274

7375
setuptools.setup(
7476
name="safeeyes",

0 commit comments

Comments
 (0)