Skip to content
Snippets Groups Projects
Select Git revision
  • 5ddb85b24417405b65b1661f9a1a0c4442043f41
  • main default protected
  • rewrite
  • production
4 results

admin_apps_create.php

Blame
  • admin_apps_create.php 1.51 KiB
    <?php
    
    function generate_app_id(): int
    {
    	return mt_rand(100000000, 999999999);
    }
    
    function check_app_id($app_id): bool
    {
        $app = db_execute("SELECT * FROM apps WHERE id = ? LIMIT 1", [$app_id]);
        return empty($app);
    }
    
    if ($_SERVER['REQUEST_METHOD'] == "POST") {
        $app_id = generate_app_id();
        db_execute("INSERT INTO apps (id, owner_id, title, description, type, callback) VALUES (?, ?, ?, ?, ?, ?)", [$app_id, $_POST['owner'], $_POST['title'], $_POST['description'], $_POST['type'], $_POST['callback']]);
    	die();
    }
    
    ?>
    
    <h1>App Creator</h1>
    
    <form method="post">
    	<label for="title">Title</label>
    	<input type="text" required name="title" id="title">
    	<label for="description">Description</label>
    	<textarea name="description" id="description" cols="30" rows="10"></textarea>
    	<label for="owner">App owner</label>
    	<select name="owner" required id="owner">
    		<?php
    			$users = db_query("SELECT * FROM accounts");
    			foreach ($users as $row) {
    				echo "<option value='".$row['id']."'>".get_display_name($row['id'])." (".$row['id'].") </option>";
    			}
    		?>
    	</select>
        <label for="type">App type</label>
        <select name="type" required id="type">
            <option value="null">None</option>
            <option value="basic_login">Basic login</option>
        </select>
    
        <label for="app_icon">App icon</label>
        <input type="file" id="app_icon" name="app_icon" />
    
        <label for="callback">Callback</label>
        <input type="url" id="callback" name="callback" />
    	<button type="submit" class="primary">Create app</button>
    </form>