mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 00:01:07 +00:00
63 lines
2.7 KiB
PHP
63 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2014-2017 ServMask Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
|
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
|
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
|
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
|
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
|
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
|
*/
|
|
|
|
class Ai1wm_Resolve_Controller {
|
|
|
|
public static function resolve( $params = array() ) {
|
|
|
|
// Set params
|
|
if ( empty( $params ) ) {
|
|
$params = stripslashes_deep( $_REQUEST );
|
|
}
|
|
|
|
// Set secret key
|
|
$secret_key = null;
|
|
if ( isset( $params['secret_key'] ) ) {
|
|
$secret_key = trim( $params['secret_key'] );
|
|
}
|
|
|
|
try {
|
|
// Ensure that unauthorized people cannot access resolve action
|
|
ai1wm_verify_secret_key( $secret_key );
|
|
} catch ( Ai1wm_Not_Valid_Secret_Key_Exception $e ) {
|
|
exit;
|
|
}
|
|
|
|
// Set IP address
|
|
if ( isset( $params['url_ip'] ) && ( $ip = $params['url_ip'] ) ) {
|
|
update_option( AI1WM_URL_IP, $ip );
|
|
}
|
|
|
|
// Set adapter
|
|
if ( isset( $params['url_adapter'] ) && ( $adapter = $params['url_adapter'] ) ) {
|
|
if ( $adapter === 'curl' ) {
|
|
update_option( AI1WM_URL_ADAPTER, 'curl' );
|
|
} else {
|
|
update_option( AI1WM_URL_ADAPTER, 'stream' );
|
|
}
|
|
}
|
|
}
|
|
}
|