Hoşgeldin Misafir

rapcoast

25 Kas 2023
9 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
ben bunu denedim ama olmadı.


<?php //error_reporting(0);

/**
* Copyright 2017 Viaviweb.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/


#Admin Login
function adminUser($username, $password){

global $mysqli;

$sql = "SELECT id,username FROM tbl_admin where username = '".$username."' and password = '".md5($password)."'";
$result = mysqli_query($mysqli,$sql);
$num_rows = mysqli_num_rows($result);

if ($num_rows > 0){
while ($row = mysqli_fetch_array($result)){
echo $_SESSION['ADMIN_ID'] = $row['id'];
echo $_SESSION['ADMIN_USERNAME'] = $row['username'];

return true;
}
}

}


# Insert Data
function Insert($table, $data){

global $mysqli;

$fields = array_keys( $data );
$values = array_map( array($mysqli, 'real_escape_string'), array_values( $data ) );

return mysqli_query($mysqli, "INSERT INTO $table(".implode(",",$fields).") VALUES ('".implode("','", $values )."');") or die( mysqli_error($mysqli));

}

// Update Data, Where clause is left optional
function Update($table_name, $form_data, $where_clause='')
{
global $mysqli;
// check for optional where clause
$whereSQL = '';
if(!empty($where_clause))
{
// check to see if the 'where' keyword exists
if(substr(strtoupper(trim($where_clause)), 0, 5) != 'WHERE')
{
// not found, add key word
$whereSQL = " WHERE ".$where_clause;
} else
{
$whereSQL = " ".trim($where_clause);
}
}
// start the actual SQL statement
$sql = "UPDATE ".$table_name." SET ";

// loop and build the column /
$sets = array();
foreach($form_data as $column => $value)
{
$sets[] = "`".$column."` = '".$value."'";
}
$sql .= implode(', ', $sets);

// append the where statement
$sql .= $whereSQL;

// run and return the query result
return mysqli_query($mysqli,$sql);
}


//Delete Data, the where clause is left optional incase the user wants to delete every row!
function Delete($table_name, $where_clause='')
{
global $mysqli;
// check for optional where clause
$whereSQL = '';
if(!empty($where_clause))
{
// check to see if the 'where' keyword exists
if(substr(strtoupper(trim($where_clause)), 0, 5) != 'WHERE')
{
// not found, add keyword
$whereSQL = " WHERE ".$where_clause;
} else
{
$whereSQL = " ".trim($where_clause);
}
}
// build the query
$sql = "DELETE FROM ".$table_name.$whereSQL;

// run and return the query result resource
return mysqli_query($mysqli,$sql);
}

// clean input
function cleanInput($input)
{
$input=addslashes(trim($input));
return $input;
}

// Get base url
function getBaseUrl($array=false) {
$protocol = "http";
$host = "";
$port = "";
$dir = "";

// Get protocol
if(array_key_exists("HTTPS", $_SERVER) && $_SERVER["HTTPS"] != "") {
if($_SERVER["HTTPS"] == "on") { $protocol = "https"; }
else { $protocol = "http"; }
} elseif(array_key_exists("REQUEST_SCHEME", $_SERVER) && $_SERVER["REQUEST_SCHEME"] != "") { $protocol = $_SERVER["REQUEST_SCHEME"]; }

// Get host
if(array_key_exists("HTTP_X_FORWARDED_HOST", $_SERVER) && $_SERVER["HTTP_X_FORWARDED_HOST"] != "") { $host = trim(end(explode(',', $_SERVER["HTTP_X_FORWARDED_HOST"]))); }
elseif(array_key_exists("SERVER_NAME", $_SERVER) && $_SERVER["SERVER_NAME"] != "") { $host = $_SERVER["SERVER_NAME"]; }
elseif(array_key_exists("HTTP_HOST", $_SERVER) && $_SERVER["HTTP_HOST"] != "") { $host = $_SERVER["HTTP_HOST"]; }
elseif(array_key_exists("SERVER_ADDR", $_SERVER) && $_SERVER["SERVER_ADDR"] != "") { $host = $_SERVER["SERVER_ADDR"]; }
//elseif(array_key_exists("SSL_TLS_SNI", $_SERVER) && $_SERVER["SSL_TLS_SNI"] != "") { $host = $_SERVER["SSL_TLS_SNI"]; }

// Get port
if(array_key_exists("SERVER_PORT", $_SERVER) && $_SERVER["SERVER_PORT"] != "") { $port = $_SERVER["SERVER_PORT"]; }
elseif(stripos($host, ":") !== false) { $port = substr($host, (stripos($host, ":")+1)); }
// Remove port from host
$host = preg_replace("/:\d+$/", "", $host);

// Get dir
if(array_key_exists("SCRIPT_NAME", $_SERVER) && $_SERVER["SCRIPT_NAME"] != "") { $dir = $_SERVER["SCRIPT_NAME"]; }
elseif(array_key_exists("PHP_SELF", $_SERVER) && $_SERVER["PHP_SELF"] != "") { $dir = $_SERVER["PHP_SELF"]; }
elseif(array_key_exists("REQUEST_URI", $_SERVER) && $_SERVER["REQUEST_URI"] != "") { $dir = $_SERVER["REQUEST_URI"]; }
// Shorten to main dir
if(stripos($dir, "/") !== false) { $dir = substr($dir, 0, (strripos($dir, "/")+1)); }

// Create return value
if(!$array) {
if($port == "80" || $port == "443" || $port == "") { $port = ""; }
else { $port = ":".$port; }
return htmlspecialchars($protocol."://".$host.$port.$dir, ENT_QUOTES);
} else { return ["protocol" => $protocol, "host" => $host, "port" => $port, "dir" => $dir]; }
}

//GCM function
function Send_GCM_msg($registration_id,$data)
{
$data1['data']=$data;

$url = 'https://fcm.googleapis.com/fcm/send';

$registatoin_ids = array($registration_id);
// $message = array($data);

$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $data1,
);

$headers = array(
'Authorization: key='.APP_GCM_KEY.'',
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();

// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}

// Close connection
curl_close($ch);
//echo $result;exit;
}

function thousandsNumberFormat($num) {

if($num > 1000) {

$x = round($num);
$x_number_format = number_format($x);
$x_array = explode(',', $x_number_format);
$x_parts = array(' K', ' M', ' B', ' T');
$x_count_parts = count($x_array) - 1;
$x_display = $x;
$x_display = $x_array[0] . ((int) $x_array[1][0] !== 0 ? '.' . $x_array[1][0] : '');
$x_display .= $x_parts[$x_count_parts - 1];

return $x_display;

}

return $num;
}

function calculate_time_span($post_time,$flag=false)
{
if($post_time!=''){

$seconds = time() - $post_time;
$year = floor($seconds /31556926);
$months = floor($seconds /2629743);
$week=floor($seconds /604800);
$day = floor($seconds /86400);
$hours = floor($seconds / 3600);
$mins = floor(($seconds - ($hours*3600)) / 60);
$secs = floor($seconds % 60);

if($seconds < 60) $time = $secs." sec ago";
else if($seconds < 3600 ) $time =($mins==1)? $mins." min ago" : $mins." mins ago";
else if($seconds < 86400) $time = ($hours==1)?$hours." hour ago":$hours." hours ago";
else if($seconds < 604800) $time = ($day==1)?$day." day ago":$day." days ago";
else if($seconds < 2629743) $time = ($week==1)?$week." week ago":$week." weeks ago";
else if($seconds < 31556926) $time =($months==1)? $months." month ago":$months." months ago";
else $time = ($year==1)? $year." year ago":$year." years ago";

if($flag){
if($day > 1){
$time=date('d-m-Y',$post_time);
}
}

return $time;
}
else{
return 'not available';
}

}


//Image compress
function compress_image($source_url, $destination_url, $quality)
{

$info = getimagesize($source_url);

if ($info['mime'] == 'image/jpeg')
$image = imagecreatefromjpeg($source_url);

elseif ($info['mime'] == 'image/gif')
$image = imagecreatefromgif($source_url);

elseif ($info['mime'] == 'image/png')
$image = imagecreatefrompng($source_url);

imagejpeg($image, $destination_url, $quality);
return $destination_url;
}

function create_thumb_image($target_folder = '', $thumb_folder = '', $thumb_width = '', $thumb_height = '')
{
$target_path = $target_folder;
$thumb_path = $thumb_folder;

$thumbnail = $thumb_path;
$upload_image = $target_path;

list($width, $height) = getimagesize($upload_image);

$file_ext=pathinfo($upload_image, PATHINFO_EXTENSION);

$thumb_create = imagecreatetruecolor($thumb_width, $thumb_height);
switch ($file_ext) {
case 'jpg':
$source = imagecreatefromjpeg($upload_image);
break;
case 'jpeg':
$source = imagecreatefromjpeg($upload_image);
break;
case 'png':
$source = imagecreatefrompng($upload_image);
break;
case 'gif':
$source = imagecreatefromgif($upload_image);
break;
default:
$source = imagecreatefromjpeg($upload_image);
}
imagecopyresized($thumb_create, $source, 0, 0, 0, 0, $thumb_width, $thumb_height, $width, $height);
switch ($file_ext) {
case 'jpg' || 'jpeg':
imagejpeg($thumb_create, $thumbnail, 80);
break;
case 'png':
imagepng($thumb_create, $thumbnail, 80);
break;
case 'gif':
imagegif($thumb_create, $thumbnail, 80);
break;
default:
imagejpeg($thumb_create, $thumbnail, 80);
}
}
function json_decode_nice($json, $assoc = FALSE){
$json = str_replace(array("\n","\r"),"",$json);
$json = preg_replace('/([{,]+)(\s*)([^"]+?)\s*:/','$1"$3":',$json);
$json = preg_replace('/(,)\s*}$/','}',$json);
return json_decode($json,$assoc);
}


function checkSignSalt($data_info){

$key="viaviweb";

$data_json = $data_info;

$data_arr = json_decode_nice(urldecode(base64_decode($data_json)),true);

if($data_arr['sign'] == '' && $data_arr['salt'] == '' ){
//$data['data'] = array("status" => -1, "message" => "Invalid sign salt.");

$set['ALL_IN_ONE_VIDEO'][] = array("status" => -1, "message" => "Invalid sign salt.");
header( 'Content-Type: application/json; charset=utf-8' );
echo $val= str_replace('\\/', '/', json_encode($set,JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
exit();

}else{

$data_arr['salt'];

$md5_salt=md5($key.$data_arr['salt']);

if($data_arr['sign']!=$md5_salt){

//$data['data'] = array("status" => -1, "message" => "Invalid sign salt.");
$set['ALL_IN_ONE_VIDEO'][] = array("status" => -1, "message" => "Invalid sign salt.");
header( 'Content-Type: application/json; charset=utf-8' );
echo $val= str_replace('\\/', '/', json_encode($set,JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
exit();
}
}

return $data_arr;

}

function verify_envato_purchase_code($product_code)
{
return array('buyer' => 'buyer', 'item' => array('id' => '9012163'));

$url = "https://api.envato.com/v3/market/author/sale?code=".$product_code;
$curl = curl_init($url);

$personal_token = "M8tF6z8lzZBBkmZt4xm3dU4lw7Rlbrwp";
$header = array();
$header[] = 'Authorization: Bearer '.$personal_token;
$header[] = 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0';
$header[] = 'timeout: 20';
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);

$envatoRes = curl_exec($curl);
curl_close($curl);
$envatoRes = json_decode($envatoRes);


return $envatoRes;
}

function verify_data_on_server($product_id,$buyer_name,$purchase_code,$purchased_status,$admin_url,$package_name,$envato_buyer_email,$ios_bundle_identifier)
{
echo "done";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://www.secureapp.viaviweb.in/verified_user.php");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query(array('envato_product_id' => $product_id,'envato_buyer_name' => $buyer_name,'envato_purchase_code' => $purchase_code,'envato_purchased_status' => $purchased_status,'buyer_admin_url' => $admin_url,'package_name' => $package_name,'envato_buyer_email' => $envato_buyer_email,'ios_bundle_identifier' => $ios_bundle_identifier)));

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
curl_close ($ch);


if ($server_output == "success") { echo "done"; } else { echo "fail!";}
}


?>


şöyle bi kod var bunda nasıl yaparım