Exemplo n.º 1
0
def logfile(tabfile, cron):
    global cronthread
    tabfiles = parsetabfiles(path=dpath)
    logfile = tabfiles[tabfile][cron]['logfile']
    log = []
    with open(logfile, 'r') as file:
        _log = file.readlines()
    for line in _log:
        line = line.strip('\n')
        if line != '':
            if '[31m' in line:
                line = line.replace('\x1b[31m', '<span style="color:#B22222">')
                line = line.replace('\x1b[0m', '</span>')
            if '[33m' in line:
                line = line.replace('\x1b[33m',
                                    '<span style="color:rgb(255,200,0)">')
                line = line.replace('\x1b[0m', '</span>')
            if '[32m' in line:
                line = line.replace('\x1b[32m', '<span style="color:#228B22">')
                line = line.replace('\x1b[0m', '</span>')
            log.append(line)
    if cron in cronthread:
        status = cronthread[cron].status
    else:
        status = 'Not running'
    return render_template("file_viewer.html",
                           file_type='log',
                           cron=cron,
                           file=log,
                           status=status)
Exemplo n.º 2
0
def editjob(tabfile, cron, error=None):
    tabfiles = parsetabfiles(path=dpath)
    if request.method == 'POST':
        request.get_data()
        # Form input
        log = request.form["logfile-input"]
        task = request.form["task-input"]
        schedule = request.form["schedule-input"]
        if request.form.getlist("enabled-input") == ['on']: enabled = True
        else: enabled = False
        who = request.form["who-input"]
        # Validate
        error = validate(schedule, who, task, log)
        tabfiles[tabfile][cron]['logfile'] = log
        tabfiles[tabfile][cron]['task'] = task
        tabfiles[tabfile][cron]['schedule'] = schedule
        tabfiles[tabfile][cron]['enabled'] = enabled
        tabfiles[tabfile][cron]['who'] = who
        # Check error
        if not error:
            savetabfiles(tabfiles=tabfiles, path=dpath)
            return redirect(url_for("default"))
    # Overwrite schedule to cope with lists or normal strings options
    tabfiles[tabfile][cron]['schedule'] = str(
        tabfiles[tabfile][cron]['schedule'])
    crondict = tabfiles[tabfile][cron]

    return render_template("editjob.html",
                           tabfile=tabfile,
                           cron=cron,
                           crondict=crondict,
                           error=error)
Exemplo n.º 3
0
def tabfile(tabfile):
    tabfiles = parsetabfiles(path=dpath)
    tabpath = f"{dpath}/{tabfile}.tab"
    tab = []
    with open(tabpath, 'r') as file:
        _tab = file.readlines()
    for line in _tab:
        line = line.strip('\n')
        if line != '':
            tab.append(line)
    return render_template("file_viewer.html", file_type='tabfile', file=tab)
Exemplo n.º 4
0
def triggerjob(tabfile, cron):
    global cronthread
    tabfiles = parsetabfiles(path=dpath)
    if request.method == 'POST':
        cronthread[cron] = triggercrontab(dpath, tabfile, cron)
        if cronthread[cron] == False:
            error = "Job could not run as it's not valid"
            return render_template("jobs.html",
                                   tabfiles=tabfiles,
                                   defaultpath=dpath,
                                   error=error)
        else:
            return redirect(url_for("logfile", tabfile=tabfile, cron=cron))
Exemplo n.º 5
0
def default():
    global dpath
    error = None
    if request.method == 'POST':
        request.get_data()
        dpath = request.form['path-tab-file']
        if not dpath: error = 'Not a valid path'
    else:
        if dpath == '' or dpath is None: dpath = get_dpath()
    tabfiles = parsetabfiles(path=dpath)
    return render_template("jobs.html",
                           tabfiles=tabfiles,
                           defaultpath=dpath,
                           error=error)
Exemplo n.º 6
0
def taskfile(tabfile, cron):
    tabfiles = parsetabfiles(path=dpath)
    taskfile = tabfiles[tabfile][cron]['task'].split(' ')[0]
    task = []
    with open(taskfile, 'r') as file:
        _task = file.readlines()
    for line in _task:
        line = line.strip('\n')
        if line != '':
            task.append(line)
    return render_template("file_viewer.html",
                           file_type='task',
                           cron=cron,
                           file=task)