2016-01-25 12:52:18 +01:00
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
import os
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
class c:
|
|
|
|
|
HEADER = '\033[95m'
|
|
|
|
|
OKBLUE = '\033[94m'
|
|
|
|
|
OKGREEN = '\033[92m'
|
|
|
|
|
WARNING = '\033[93m'
|
|
|
|
|
FAIL = '\033[91m'
|
|
|
|
|
END = '\033[0m'
|
|
|
|
|
BOLD = '\033[1m'
|
|
|
|
|
UNDERLINE = '\033[4m'
|
|
|
|
|
|
|
|
|
|
def header(app_path):
|
2016-04-28 19:15:41 +02:00
|
|
|
|
print(c.UNDERLINE + c.HEADER + c.BOLD + "YUNOHOST APP PACKAGE LINTER\n" + c.END)
|
2016-01-25 12:52:18 +01:00
|
|
|
|
print("App packaging documentation: https://yunohost.org/#/packaging_apps")
|
|
|
|
|
print("App package example: https://github.com/YunoHost/example_ynh\n")
|
|
|
|
|
print("Checking " + c.BOLD + app_path + c.END + " package\n")
|
|
|
|
|
|
|
|
|
|
def print_right(str):
|
|
|
|
|
print(c.OKGREEN + "✔", str, c.END)
|
|
|
|
|
|
|
|
|
|
def print_wrong(str):
|
|
|
|
|
print(c.FAIL + "✘", str, c.END)
|
|
|
|
|
|
|
|
|
|
def check_files_exist(app_path):
|
|
|
|
|
"""
|
|
|
|
|
Check files exist
|
|
|
|
|
"""
|
|
|
|
|
print (c.BOLD + c.HEADER + ">>>> MISSING FILES <<<<" + c.END);
|
|
|
|
|
fname = ("manifest.json", "scripts/install", "scripts/remove", \
|
|
|
|
|
"scripts/upgrade", "scripts/backup", "scripts/restore", "LICENSE", "README.md")
|
|
|
|
|
i = 0;
|
|
|
|
|
while (i < len(fname)):
|
|
|
|
|
if (check_file_exist(app_path + "/" + fname[i])): print_right(fname[i])
|
|
|
|
|
else: print_wrong(fname[i])
|
|
|
|
|
i+=1
|
|
|
|
|
|
|
|
|
|
def check_file_exist(file_path):
|
|
|
|
|
return 1 if os.path.isfile(file_path) else 0
|
|
|
|
|
|
|
|
|
|
def read_file(file_path):
|
|
|
|
|
with open(file_path) as f:
|
|
|
|
|
file = f.read().splitlines()
|
|
|
|
|
return file
|
|
|
|
|
|
|
|
|
|
def check_manifest(manifest):
|
|
|
|
|
print (c.BOLD + c.HEADER + "\n>>>> MANIFEST <<<<" + c.END);
|
|
|
|
|
"""
|
|
|
|
|
Check if there is no comma syntax issue
|
|
|
|
|
"""
|
|
|
|
|
try:
|
|
|
|
|
with open(manifest, encoding='utf-8') as data_file:
|
|
|
|
|
manifest = json.loads(data_file.read())
|
|
|
|
|
print_right("Manifest syntax is good.")
|
2016-02-01 23:31:33 +01:00
|
|
|
|
except: print_wrong("There is a syntax (comma) issue in manifest.json. Can't check manifest."); return
|
2016-01-25 12:52:18 +01:00
|
|
|
|
i, fields = 0, ("name", "id", "description", "url", "license", \
|
|
|
|
|
"maintainer", "multi_instance", "services", "arguments")
|
|
|
|
|
while (i < len(fields)):
|
|
|
|
|
if fields[i] in manifest: print_right("\"" + fields[i] + "\" fields is present")
|
|
|
|
|
else: print_wrong("\"" + fields[i] + "\" field is missing")
|
|
|
|
|
i+=1
|
|
|
|
|
|
|
|
|
|
# Check under array
|
|
|
|
|
# manifest["description"]["en"]
|
|
|
|
|
# manifest["maintainer"]["name"]
|
|
|
|
|
# manifest["maintainer"]["email"]
|
|
|
|
|
# manifest["arguments"]["install"]
|
|
|
|
|
"""
|
|
|
|
|
Check values in keys
|
|
|
|
|
"""
|
|
|
|
|
if "license" in manifest and manifest["license"] != "free" and manifest["license"] != "non-free":
|
|
|
|
|
print_wrong("You should specify 'free' or 'non-free' software package in the license field.")
|
|
|
|
|
elif "license" in manifest: print_right("'licence' key value is good.")
|
|
|
|
|
if "multi_instance" in manifest and manifest["multi_instance"] != "true" and manifest["multi_instance"] != "false":
|
|
|
|
|
print_wrong("multi_instance field must use 'true' or 'false' value.");
|
|
|
|
|
if "services" in manifest:
|
2016-01-28 22:15:50 +01:00
|
|
|
|
services = ("nginx", "php5-fpm", "mysql", "uwsgi", "metronome", "postfix", "dovecot") #, "rspamd", "rmilter")
|
2016-01-25 12:52:18 +01:00
|
|
|
|
i = 0
|
|
|
|
|
while (i < len(manifest["services"])):
|
|
|
|
|
if manifest["services"][i] not in services:
|
2016-01-28 22:15:50 +01:00
|
|
|
|
print_wrong(manifest["services"][i] + " service doesn't exist")
|
2016-01-25 12:52:18 +01:00
|
|
|
|
i+=1
|
|
|
|
|
if "install" in manifest["arguments"]:
|
2016-02-17 18:50:29 +01:00
|
|
|
|
types = ("domain", "path", "password", "user", "admin")
|
2016-01-25 12:52:18 +01:00
|
|
|
|
i = 0
|
|
|
|
|
while (i < len(types)):
|
|
|
|
|
j = 0
|
|
|
|
|
while (j < len(manifest["arguments"]["install"])):
|
|
|
|
|
if types[i] == manifest["arguments"]["install"][j]["name"]:
|
|
|
|
|
if "type" not in manifest["arguments"]["install"][j]:
|
2016-02-17 18:46:40 +01:00
|
|
|
|
print("You should specify the type of the key with", end =" ")
|
2016-02-17 18:50:29 +01:00
|
|
|
|
print(types[i - 1]) if i == 4 else print(types[i])
|
2016-01-25 12:52:18 +01:00
|
|
|
|
j+=1
|
|
|
|
|
i+=1
|
|
|
|
|
|
2016-01-31 14:27:07 +01:00
|
|
|
|
def check_script(path, script_name):
|
2016-01-31 14:18:59 +01:00
|
|
|
|
script_path = path + "/scripts/" + script_name
|
|
|
|
|
if check_file_exist(script_path) == 0: return
|
|
|
|
|
print (c.BOLD + c.HEADER + "\n>>>>", scripts[i].upper(), "SCRIPT <<<<" + c.END);
|
|
|
|
|
script = read_file(script_path)
|
|
|
|
|
check_script_header_presence(script)
|
|
|
|
|
check_sudo_prefix_commands(script)
|
|
|
|
|
check_verifications_done_before_modifying_system(script)
|
|
|
|
|
if "wget" in script or "curl" in script:
|
|
|
|
|
print("You should not fetch sources from internet with curl or wget for security reasons.")
|
2016-01-25 12:52:18 +01:00
|
|
|
|
|
|
|
|
|
def check_script_header_presence(script):
|
|
|
|
|
if "#!/bin/bash" in script[0]: print_right("Script contain at first line \"#!/bin/bash\"")
|
|
|
|
|
else: print_wrong("Script must contain at first line \"#!/bin/bash\"")
|
|
|
|
|
|
|
|
|
|
def check_sudo_prefix_commands(script):
|
|
|
|
|
"""
|
|
|
|
|
Check if commands are prefix with "sudo"
|
|
|
|
|
"""
|
2016-01-26 18:58:15 +01:00
|
|
|
|
cmd = ("rm", "chown", "chmod", "apt-get", "apt", \
|
|
|
|
|
"service", "yunohost", "find" "swapon", "mkswap", "useradd")#, "dd") cp, mkdir
|
2016-01-25 12:52:18 +01:00
|
|
|
|
i, ok = 0, 1
|
|
|
|
|
while i < len(script):
|
|
|
|
|
j = 0
|
|
|
|
|
while j < len(cmd):
|
|
|
|
|
if cmd[j] + " " in script[i] and "sudo " + cmd[j] + " " not in script[i] \
|
|
|
|
|
and "yunohost service" not in script[i] and "-exec " + cmd[j] not in script[i] \
|
|
|
|
|
and ".service" not in script[i] and script[i][0] != '#':
|
|
|
|
|
print(c.FAIL + "✘ Line ", i + 1, "you should add \"sudo\" before this command line:", c.END)
|
|
|
|
|
print(script[i]); ok = 0
|
|
|
|
|
j+=1
|
|
|
|
|
i+=1
|
|
|
|
|
if ok == 1: print_right("All commands are prefix with \"sudo\".")
|
|
|
|
|
|
|
|
|
|
def check_verifications_done_before_modifying_system(script):
|
|
|
|
|
"""
|
|
|
|
|
Check if verifications are done before modifying the system
|
|
|
|
|
"""
|
|
|
|
|
ex, i = 0, 0
|
|
|
|
|
while i < len(script):
|
|
|
|
|
if "exit" in script[i]: ex = i
|
|
|
|
|
i+=1
|
|
|
|
|
cmd = ("cp", "mkdir", "rm", "chown", "chmod", "apt-get", "apt", "service", \
|
|
|
|
|
"find", "sed", "mysql", "swapon", "mount", "dd", "mkswap", "useradd")#"yunohost"
|
|
|
|
|
i, ok = 0, 1
|
|
|
|
|
while i < len(script):
|
|
|
|
|
if i >= ex: break
|
|
|
|
|
j = 0
|
|
|
|
|
while (j < len(cmd)):
|
2016-02-01 23:26:58 +01:00
|
|
|
|
if cmd[j] in script[i] and script[i][0] != '#': ok = 0
|
2016-01-25 12:52:18 +01:00
|
|
|
|
j+=1
|
|
|
|
|
i+=1
|
2016-02-01 23:26:58 +01:00
|
|
|
|
if ok == 0:
|
|
|
|
|
print(c.FAIL + "✘ At line", ex + 1, "'exit' command is executed with system modification before.")
|
|
|
|
|
print("This system modification is an issue if a verification exit the script.")
|
|
|
|
|
print("You should move this verification before any system modification." + c.END);
|
|
|
|
|
else: print_right("Verifications (with exit commands) are done before any system modification.")
|
2016-01-25 12:52:18 +01:00
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
os.system("clear")
|
|
|
|
|
if len(sys.argv) != 2: print("Give one app package path."); exit()
|
|
|
|
|
app_path = sys.argv[1]
|
|
|
|
|
header(app_path)
|
|
|
|
|
check_files_exist(app_path)
|
|
|
|
|
check_manifest(app_path + "/manifest.json")
|
2016-01-31 14:18:59 +01:00
|
|
|
|
i, scripts = 0, ("install", "remove", "upgrade", "backup", "restore")
|
|
|
|
|
while i < len(scripts):
|
2016-01-31 14:27:07 +01:00
|
|
|
|
check_script(app_path, scripts[i])
|
2016-01-31 14:18:59 +01:00
|
|
|
|
i+=1
|
2016-01-25 12:52:18 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
## Todo ##
|
|
|
|
|
* Si nginx dans les services du manifest, vérifier :
|
|
|
|
|
* présence de /conf/nginx.conf
|
|
|
|
|
* sudo service reload nginx dans les scripts install, remove, upgrade, restore (backup n’est pas nécessaire)
|
|
|
|
|
|
|
|
|
|
* Helper propositions
|
|
|
|
|
if "apt" in install: print("You should use this helper: \"sudo yunohost \".")
|
|
|
|
|
|
|
|
|
|
* use jsonchema to check the manifest
|
|
|
|
|
https://github.com/YunoHost/yunotest/blob/master/apps_tests/manifest_schema.json
|
|
|
|
|
https://github.com/YunoHost/yunotest/blob/master/apps_tests/__init__.py
|
|
|
|
|
"""
|