1309 lines
47 KiB
PHP
Executable File
1309 lines
47 KiB
PHP
Executable File
<?php
|
|
//'tes' => number_format(200 / 100, 2, ",", "."),
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
require APPPATH . '/libraries/REST_Controller.php';
|
|
class Merchant extends REST_Controller
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->load->helper("url");
|
|
$this->load->helper('fcm_v1_helper');
|
|
$this->load->database();
|
|
$this->load->model('Merchantapi_model');
|
|
$this->load->model('wallet_model', 'wallet');
|
|
$this->load->model('Pelanggan_model');
|
|
$this->load->model('Driver_model');
|
|
date_default_timezone_set('Asia/Jakarta');
|
|
}
|
|
|
|
function index_get()
|
|
{
|
|
$this->response("Api for Merchant Ontime!", 200);
|
|
}
|
|
|
|
function privacy_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$app_settings = $this->Pelanggan_model->get_settings();
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'found',
|
|
'data' => $app_settings
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
|
|
function partner_region_post()
|
|
{
|
|
|
|
$partner_region = $this->Merchantapi_model->get_partner_region();
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'found',
|
|
'data' => $partner_region
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
|
|
function login_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
$no_telepon_val =
|
|
isset($decoded_data->no_telepon) ? trim((string)$decoded_data->no_telepon) : '';
|
|
$email_val = isset($decoded_data->email)
|
|
? trim((string)$decoded_data->email)
|
|
: '';
|
|
|
|
if (!$decoded_data || !isset($decoded_data->password) || ($no_telepon_val === '' && $email_val === '')) {
|
|
$this->response(array('code' => '400', 'message' => 'Invalid request', 'data' => []), 200);
|
|
return;
|
|
}
|
|
$login_by_phone = $no_telepon_val !== '';
|
|
if (function_exists('fcm_v1_validate_login_device_token_from_app')) {
|
|
$fcm_err = fcm_v1_validate_login_device_token_from_app($decoded_data);
|
|
if (is_array($fcm_err)) {
|
|
$this->response(
|
|
array('code' => $fcm_err['code'], 'message' => $fcm_err['message'], 'data' => []),
|
|
200
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
// Only save FCM token when valid (relogin overwrites invalid/placeholder tokens).
|
|
$token = function_exists('fcm_v1_device_token_from_request')
|
|
? fcm_v1_device_token_from_request($decoded_data)
|
|
: '';
|
|
$reg_id = array();
|
|
if ($token !== '' && function_exists('fcm_v1_is_valid_device_token') && fcm_v1_is_valid_device_token($token)) {
|
|
$reg_id['token_merchant'] = $token;
|
|
}
|
|
|
|
$condition = array(
|
|
'password' => sha1($decoded_data->password),
|
|
//'token' => $decoded_data->token
|
|
);
|
|
|
|
if ($login_by_phone) {
|
|
$condition['telepon_mitra'] = $no_telepon_val;
|
|
} else {
|
|
$condition['email_mitra'] = $email_val;
|
|
}
|
|
|
|
$check_banned = $login_by_phone
|
|
? $this->Merchantapi_model->check_banned($no_telepon_val)
|
|
: $this->Merchantapi_model->check_banned_by_email($email_val);
|
|
if ($check_banned) {
|
|
$message = array(
|
|
'message' => 'banned',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$message = array();
|
|
if ($cek_login->num_rows() > 0) {
|
|
if (!empty($reg_id)) {
|
|
$loginRow = $cek_login->row();
|
|
$phone_for_token = '';
|
|
if ($login_by_phone) {
|
|
$phone_for_token = $no_telepon_val;
|
|
} else if (!empty($loginRow) && isset($loginRow->telepon_merchant) && $loginRow->telepon_merchant !== '') {
|
|
$phone_for_token = $loginRow->telepon_merchant;
|
|
} else if (!empty($loginRow) && isset($loginRow->telepon_mitra) && $loginRow->telepon_mitra !== '') {
|
|
$phone_for_token = $loginRow->telepon_mitra;
|
|
}
|
|
|
|
if ($phone_for_token !== '') {
|
|
$this->Merchantapi_model->edit_profile_token($reg_id, $phone_for_token);
|
|
}
|
|
}
|
|
$get_pelanggan = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'found',
|
|
'data' => $get_pelanggan->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'nomor hp/email atau password salah!',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
}
|
|
|
|
function register_merchant_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
|
|
$email = $dec_data->email;
|
|
$phone = $dec_data->no_telepon;
|
|
$check_exist = $this->Merchantapi_model->check_exist($email, $phone);
|
|
$check_exist_phone = $this->Merchantapi_model->check_exist_phone($phone);
|
|
$check_exist_email = $this->Merchantapi_model->check_exist_email($email);
|
|
$check_exist_ktp = $this->Merchantapi_model->check_ktp($dec_data->no_ktp);
|
|
if ($check_exist) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'email dan nomor hp sudah ada',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 201);
|
|
} else
|
|
if ($check_exist_phone) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'nomor hp sudah ada!',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 201);
|
|
} else if ($check_exist_ktp) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'nomor ktp sudah ada!',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 201);
|
|
} else if ($check_exist_email) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'email sudah ada!',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 201);
|
|
} else {
|
|
if ($dec_data->checked == "true") {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'next',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
|
|
$data_signup = array(
|
|
'id_mitra' => 'M' . time(),
|
|
'nama_mitra' => $dec_data->nama_mitra,
|
|
'jenis_identitas_mitra' => $dec_data->jenis_identitas,
|
|
'nomor_identitas_mitra' => $dec_data->no_ktp,
|
|
'alamat_mitra' => $dec_data->alamat_mitra,
|
|
'wilayah' => $dec_data->partner_region,
|
|
'email_mitra' => $dec_data->email,
|
|
'bank' => $dec_data->bank,
|
|
'norek_mitra' => $dec_data->norek_mitra,
|
|
'nama_rekening' => $dec_data->nama_rekening,
|
|
'password' => sha1(time()),
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
'phone_mitra' => $dec_data->phone,
|
|
'country_code_mitra' => $dec_data->countrycode,
|
|
'partner' => '0',
|
|
'status_mitra' => '0'
|
|
);
|
|
|
|
$image = $dec_data->foto;
|
|
$namafoto = time() . '-' . rand(0, 99999) . ".jpg";
|
|
$path = "images/merchant/" . $namafoto;
|
|
file_put_contents($path, base64_decode($image));
|
|
|
|
// Merchant apps prior to FCM v1 do not send a Firebase token on register.
|
|
// Generate a deterministic placeholder from email so token_merchant is never empty.
|
|
// This value is NOT a real FCM token; Notification_model will ignore it for push.
|
|
$tokenPlaceholder = 'R' . sprintf('%u', crc32(strtolower(trim((string) $dec_data->email))));
|
|
|
|
$data_merchant = array(
|
|
'id_fitur' => $dec_data->id_fitur,
|
|
'nama_merchant' => $dec_data->nama_merchant,
|
|
'alamat_merchant' => $dec_data->alamat_merchant,
|
|
'latitude_merchant' => $dec_data->latitude_merchant,
|
|
'longitude_merchant' => $dec_data->longitude_merchant,
|
|
'jam_buka' => $dec_data->jam_buka,
|
|
'jam_tutup' => $dec_data->jam_tutup,
|
|
'category_merchant' => $dec_data->category_merchant,
|
|
'foto_merchant' => $namafoto,
|
|
'telepon_merchant' => $dec_data->no_telepon,
|
|
'phone_merchant' => $dec_data->phone,
|
|
'country_code_merchant' => $dec_data->countrycode,
|
|
'status_merchant' => '0',
|
|
'token_merchant' => $tokenPlaceholder
|
|
);
|
|
|
|
$imagektp = $dec_data->foto_ktp;
|
|
$namafotoktp = time() . '-' . rand(0, 99999) . ".jpg";
|
|
$pathktp = "images/fotoberkas/ktp/" . $namafotoktp;
|
|
file_put_contents($pathktp, base64_decode($imagektp));
|
|
|
|
$data_berkas = array(
|
|
'foto_ktp' => $namafotoktp
|
|
);
|
|
|
|
|
|
$signup = $this->Merchantapi_model->signup($data_signup, $data_merchant, $data_berkas);
|
|
if ($signup) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => 'Pendaftaran berhasil! Mohon tunggu kami mengkonfirmasi dan menghubungi Anda untuk mendapatkan Password Akun'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'failed',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 201);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function home_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$app_settings = $this->Pelanggan_model->get_settings();
|
|
$saldo = $this->Pelanggan_model->saldouser($dec_data->idmitra);
|
|
$transaksi = $this->Merchantapi_model->transaksi_home($dec_data->idmerchant);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
foreach ($app_settings as $item) {
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'saldo' => $saldo->row('saldo'),
|
|
'currency' => $item['app_currency'],
|
|
'currency_text' => $item['app_currency_text'],
|
|
'app_aboutus' => $item['app_aboutus'],
|
|
'app_contact' => $item['app_contact'],
|
|
'app_website' => $item['app_website'],
|
|
'mobilepulsa_username' => $item['mobilepulsa_username'],
|
|
'mobilepulsa_harga' => $item['mobilepulsa_harga'],
|
|
'mobilepulsa_api_key' => $item['mobilepulsa_api_key'],
|
|
'mp_status' => $item['mp_status'],
|
|
'mp_active' => $item['mp_active'],
|
|
'api_password' => $item['api_password'],
|
|
'api_token' => $item['api_token'],
|
|
'app_email' => $item['app_email'],
|
|
'data' => $transaksi->result(),
|
|
'user' => $cek_login->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
}
|
|
|
|
function onoff_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
|
|
$update = [
|
|
'status_merchant' => $decoded_data->status
|
|
];
|
|
|
|
$where = [
|
|
'id_merchant' => $decoded_data->idmerchant,
|
|
'token_merchant' => $decoded_data->token
|
|
];
|
|
|
|
$success = $this->Merchantapi_model->onmerchant($update, $where);
|
|
|
|
if ($success) {
|
|
$message = [
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => $decoded_data->status
|
|
];
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = [
|
|
'code' => '201',
|
|
'message' => 'gagal',
|
|
'data' => $decoded_data->status
|
|
];
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
public function topupmidtrans_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
|
|
$iduser = $dec_data->id;
|
|
$bank = $dec_data->bank;
|
|
$nama = $dec_data->nama;
|
|
$amount = $dec_data->amount;
|
|
$card = $dec_data->card;
|
|
$email = $dec_data->email;
|
|
$phone = $dec_data->no_telepon;
|
|
|
|
$saldolama = $this->Pelanggan_model->saldouser($iduser);
|
|
$datawithdraw = array(
|
|
'id_user' => $iduser,
|
|
'rekening' => $card,
|
|
'bank' => $bank,
|
|
'nama_pemilik' => $nama,
|
|
'type' => $dec_data->type,
|
|
'jumlah' => $amount,
|
|
'status' => 0
|
|
);
|
|
$check_exist = $this->Merchantapi_model->check_exist($email, $phone);
|
|
|
|
if ($dec_data->type == "topup") {
|
|
$withdrawdata = $this->Pelanggan_model->insertwallet($datawithdraw);
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
|
|
if ($saldolama->row('saldo') >= $amount && $check_exist) {
|
|
$withdrawdata = $this->Pelanggan_model->insertwallet($datawithdraw);
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'Permintaan gagal',
|
|
'data' => ''
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public function withdraw_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
|
|
|
|
$iduser = $dec_data->id;
|
|
$bank = $dec_data->bank;
|
|
$nama = $dec_data->nama;
|
|
$amount = $dec_data->amount;
|
|
$card = $dec_data->card;
|
|
$email = $dec_data->email;
|
|
$phone = $dec_data->no_telepon;
|
|
|
|
$saldolama = $this->Pelanggan_model->saldouser($iduser);
|
|
|
|
$datawithdraw = array(
|
|
'id_user' => $iduser,
|
|
'rekening' => $card,
|
|
'bank' => $bank,
|
|
'nama_pemilik' => $nama,
|
|
'type' => $dec_data->type,
|
|
'jumlah' => $amount,
|
|
'status' => ($dec_data->type == "topup") ? 0 : 1
|
|
);
|
|
$check_exist = $this->Merchantapi_model->check_exist($email, $phone);
|
|
|
|
if ($dec_data->type == "topup") {
|
|
$withdrawdata = $this->Pelanggan_model->insertwallet($datawithdraw);
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
|
|
if ($saldolama->row('saldo') >= $amount && $check_exist) {
|
|
$withdrawdata = $this->Pelanggan_model->insertwallet($datawithdraw);
|
|
|
|
/**
|
|
* Start Edit
|
|
*
|
|
*
|
|
*/
|
|
$token = $this->wallet->gettoken($iduser);
|
|
$regid = $this->wallet->getregid($iduser);
|
|
$tokenmerchant = $this->wallet->gettokenmerchant($iduser);
|
|
|
|
$topic = null;
|
|
if ($token == NULL and $tokenmerchant == NULL and $regid != NULL && !empty(trim((string) $regid['reg_id']))) {
|
|
$topic = $regid['reg_id'];
|
|
} else if ($regid == NULL and $tokenmerchant == NULL and $token != NULL && !empty(trim((string) $token['token']))) {
|
|
$topic = $token['token'];
|
|
} else if ($regid == NULL and $token == NULL and $tokenmerchant != NULL && !empty(trim((string) $tokenmerchant['token_merchant']))) {
|
|
$topic = $tokenmerchant['token_merchant'];
|
|
}
|
|
|
|
$title = 'Sukses';
|
|
$message = 'Permintaan berhasil dikirim';
|
|
$saldo = $this->wallet->getsaldo($iduser);
|
|
|
|
$this->wallet->ubahsaldo($iduser, $amount, $saldo);
|
|
if ($topic !== null) {
|
|
$this->wallet->send_notif($title, $message, $topic);
|
|
}
|
|
|
|
/* END EDIT */
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'Saldo anda tidak mencukupi',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
}
|
|
|
|
function history_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$date = date_create($dec_data->day);
|
|
$transaksi = $this->Merchantapi_model->transaksi_history($dec_data->idmerchant);
|
|
$transaksi_earning = $this->Merchantapi_model->total_history_earning($dec_data->idmerchant);
|
|
$transaksi_daily = $this->Merchantapi_model->total_history_daily($dec_data->day, $dec_data->idmerchant);
|
|
$transaksi_month = $this->Merchantapi_model->total_history_month(date_format($date, "m"), $dec_data->idmerchant);
|
|
$transaksi_yearly = $this->Merchantapi_model->total_history_yearly(date_format($date, "Y"), $dec_data->idmerchant);
|
|
$daily = '0';
|
|
$month = '0';
|
|
$yearly = '0';
|
|
$earning = '0';
|
|
if (!empty($transaksi_earning)) {
|
|
foreach ($transaksi_earning->result_array() as $item) {
|
|
if ($item['earning'] != NULL) {
|
|
$earning = $item['earning'];
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($transaksi_daily->result_array() as $item) {
|
|
if ($item['daily'] != NULL) {
|
|
$daily = $item['daily'];
|
|
}
|
|
}
|
|
foreach ($transaksi_month->result_array() as $item) {
|
|
if ($item['month'] != NULL) {
|
|
$month = $item['month'];
|
|
}
|
|
}
|
|
foreach ($transaksi_yearly->result_array() as $item) {
|
|
if ($item['yearly'] != NULL) {
|
|
$yearly = $item['yearly'];
|
|
}
|
|
}
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => $transaksi->result(),
|
|
'daily' => $daily,
|
|
'month' => $month,
|
|
'year' => $yearly,
|
|
'earning' => $earning,
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function kategori_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$datakategori = $this->Merchantapi_model->kategori_active($dec_data->idmerchant);
|
|
$datakategorinon = $this->Merchantapi_model->kategori_nonactive($dec_data->idmerchant);
|
|
$totalitemactive = $this->Merchantapi_model->totalitemactive($dec_data->idmerchant);
|
|
if ($cek_login->num_rows() > 0) {
|
|
foreach ($totalitemactive->result() as $itemstatus) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'dataactive' => $datakategori,
|
|
'datanonactive' => $datakategorinon,
|
|
'totalitemactive' => $itemstatus->active,
|
|
'totalitemnonactive' => $itemstatus->nonactive,
|
|
'totalitempromo' => $itemstatus->promo,
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed',
|
|
'data' => [],
|
|
'datanonactive' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function item_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$dataitemactive = $this->Merchantapi_model->itembycatactive($dec_data->idmerchant, $dec_data->idkategori);
|
|
if ($cek_login->num_rows() > 0) {
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => $dataitemactive->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function active_kategori_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->actived_kategori($dec_data->idkategori, $dec_data->status);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function active_item_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->actived_item($dec_data->idkategori, $dec_data->status);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function add_kategori_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->addkategori($dec_data->namakategori, $dec_data->status, $dec_data->id);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function edit_kategori_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$dataedit = array(
|
|
'nama_kategori_item' => $dec_data->namakategori,
|
|
'status_kategori' => $dec_data->status,
|
|
'all_category' => 0,
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->editkategori($dataedit, $dec_data->id);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function delete_kategori_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->deletekategori($dec_data->id);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
function add_item_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
|
|
$image = $dec_data->foto;
|
|
$namafoto = time() . '-' . rand(0, 99999) . ".jpg";
|
|
$path = "images/itemmerchant/" . $namafoto;
|
|
file_put_contents($path, base64_decode($image));
|
|
|
|
$dataitem = array(
|
|
'id_merchant' => $dec_data->idmerchant,
|
|
'nama_item' => $dec_data->nama,
|
|
'harga_item' => $dec_data->harga,
|
|
'harga_promo' => $dec_data->harga_promo,
|
|
'kategori_item' => $dec_data->kategori,
|
|
'deskripsi_item' => $dec_data->deskripsi,
|
|
'foto_item' => $namafoto,
|
|
'status_promo' => $dec_data->status_promo,
|
|
'status_item' => 1
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->additem($dataitem);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function edit_item_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
|
|
|
|
|
|
if ($dec_data->foto == null && $dec_data->foto_lama == null) {
|
|
$dataitem = array(
|
|
'nama_item' => $dec_data->nama,
|
|
'harga_item' => $dec_data->harga,
|
|
'harga_promo' => $dec_data->harga_promo,
|
|
'kategori_item' => $dec_data->kategori,
|
|
'deskripsi_item' => $dec_data->deskripsi,
|
|
'status_promo' => $dec_data->status_promo
|
|
);
|
|
} else {
|
|
$image = $dec_data->foto;
|
|
$namafoto = time() . '-' . rand(0, 99999) . ".jpg";
|
|
$path = "images/itemmerchant/" . $namafoto;
|
|
file_put_contents($path, base64_decode($image));
|
|
|
|
$foto = $dec_data->foto_lama;
|
|
$path = "images/itemmerchant/$foto";
|
|
unlink("$path");
|
|
|
|
$dataitem = array(
|
|
'nama_item' => $dec_data->nama,
|
|
'harga_item' => $dec_data->harga,
|
|
'harga_promo' => $dec_data->harga_promo,
|
|
'kategori_item' => $dec_data->kategori,
|
|
'deskripsi_item' => $dec_data->deskripsi,
|
|
'foto_item' => $namafoto,
|
|
'status_promo' => $dec_data->status_promo
|
|
);
|
|
}
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->edititem($dataitem, $dec_data->id);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function delete_item_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon,
|
|
//'token' => $decoded_data->token
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$this->Merchantapi_model->deleteitem($dec_data->id);
|
|
|
|
if ($cek_login->num_rows() > 0) {
|
|
$foto = $dec_data->foto_lama;
|
|
$path = "images/itemmerchant/$foto";
|
|
unlink("$path");
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success'
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'failed'
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function edit_profile_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
$check_exist_phone = $this->Merchantapi_model->check_exist_phone_edit($decoded_data->id_mitra, $decoded_data->no_telepon);
|
|
$check_exist_email = $this->Merchantapi_model->check_exist_email_edit($decoded_data->id_mitra, $decoded_data->email);
|
|
if ($check_exist_phone) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'phone already exist',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 201);
|
|
} else if ($check_exist_email) {
|
|
$message = array(
|
|
'code' => '201',
|
|
'message' => 'email sudah ada!',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 201);
|
|
} else {
|
|
|
|
$condition = array(
|
|
'telepon_mitra' => $decoded_data->no_telepon
|
|
);
|
|
$condition2 = array(
|
|
'telepon_mitra' => $decoded_data->no_telepon_lama
|
|
);
|
|
$datauser = array(
|
|
'nama' => $decoded_data->fullnama,
|
|
'no_telepon' => $decoded_data->no_telepon,
|
|
'phone' => $decoded_data->phone,
|
|
'email' => $decoded_data->email,
|
|
'bank' => $decoded_data->bank,
|
|
'norek_mitra' => $decoded_data->norek_mitra,
|
|
'nama_rekening' => $decoded_data->nama_rekening,
|
|
'countrycode' => $decoded_data->countrycode,
|
|
'alamat' => $decoded_data->alamat
|
|
);
|
|
|
|
|
|
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition2);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$upd_user = $this->Merchantapi_model->edit_profile_mitra_merchant($datauser, $decoded_data->no_telepon_lama);
|
|
$getdata = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => $getdata->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'error data',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
}
|
|
|
|
function edit_merchant_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
|
|
$condition = array(
|
|
'telepon_mitra' => $decoded_data->no_telepon
|
|
);
|
|
|
|
if ($decoded_data->foto == null && $decoded_data->foto_lama == null) {
|
|
$datauser = array(
|
|
'nama_merchant' => $decoded_data->nama,
|
|
'alamat_merchant' => $decoded_data->alamat,
|
|
'latitude_merchant' => $decoded_data->latitude,
|
|
'longitude_merchant' => $decoded_data->longitude,
|
|
'jam_buka' => $decoded_data->jam_buka,
|
|
'jam_tutup' => $decoded_data->jam_tutup
|
|
);
|
|
} else {
|
|
$image = $decoded_data->foto;
|
|
$namafoto = time() . '-' . rand(0, 99999) . ".jpg";
|
|
$path = "images/merchant/" . $namafoto;
|
|
file_put_contents($path, base64_decode($image));
|
|
|
|
$foto = $decoded_data->foto_lama;
|
|
$path = "./images/merchant/$foto";
|
|
unlink("$path");
|
|
|
|
|
|
$datauser = array(
|
|
'nama_merchant' => $decoded_data->nama,
|
|
'alamat_merchant' => $decoded_data->alamat,
|
|
'latitude_merchant' => $decoded_data->latitude,
|
|
'longitude_merchant' => $decoded_data->longitude,
|
|
'jam_buka' => $decoded_data->jam_buka,
|
|
'jam_tutup' => $decoded_data->jam_tutup,
|
|
'foto_merchant' => $namafoto
|
|
);
|
|
}
|
|
|
|
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$upd_user = $this->Merchantapi_model->edit_profile_token($datauser, $decoded_data->no_telepon);
|
|
$getdata = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'data' => $getdata->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'error data',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function detail_transaksi_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$dec_data = json_decode($data);
|
|
$condition = array(
|
|
'telepon_mitra' => $dec_data->no_telepon
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
if ($cek_login->num_rows() > 0) {
|
|
$gettrans = $this->Pelanggan_model->transaksi($dec_data->id);
|
|
$getdriver = $this->Pelanggan_model->detail_driver($dec_data->id_driver);
|
|
$getpelanggan = $this->Driver_model->get_data_pelangganid($dec_data->id_pelanggan);
|
|
$getitem = $this->Pelanggan_model->detail_item($dec_data->id);
|
|
|
|
$message = array(
|
|
'status' => true,
|
|
'message' => "success",
|
|
'data' => $gettrans->result(),
|
|
'driver' => $getdriver->result(),
|
|
'pelanggan' => $getpelanggan->result(),
|
|
'item' => $getitem->result(),
|
|
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'error data',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function forgot_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
|
|
$condition = array(
|
|
'email_mitra' => $decoded_data->email,
|
|
'status_mitra' => '1'
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$app_settings = $this->Pelanggan_model->get_settings();
|
|
$token = sha1(rand(0, 999999) . time());
|
|
|
|
|
|
if ($cek_login->num_rows() > 0) {
|
|
$cheker = array('msg' => $cek_login->result());
|
|
foreach ($app_settings as $item) {
|
|
foreach ($cheker['msg'] as $item2 => $val) {
|
|
$dataforgot = array(
|
|
'userid' => $val->id_mitra,
|
|
'token' => $token,
|
|
'idKey' => '3'
|
|
);
|
|
}
|
|
|
|
|
|
$forgot = $this->Pelanggan_model->dataforgot($dataforgot);
|
|
|
|
$linkbtn = base_url() . 'resetpass/rest/' . $token . '/3';
|
|
$template = $this->Pelanggan_model->template1($item['email_subject'], $item['email_text1'], $item['email_text2'], $item['app_website'], $item['app_name'], $linkbtn, $item['app_linkgoogle'], $item['app_address']);
|
|
$sendmail = $this->Pelanggan_model->emailsend($item['email_subject'] . " [ticket-" . rand(0, 999999) . "]", $decoded_data->email, $template, $item['smtp_host'], $item['smtp_port'], $item['smtp_username'], $item['smtp_password'], $item['smtp_from'], $item['app_name'], $item['smtp_secure']);
|
|
}
|
|
if ($forgot && $sendmail) {
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'found',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '401',
|
|
'message' => 'email tidak terdaftar',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'email tidak terdaftar',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function changepass_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
$reg_id = array(
|
|
'password' => sha1($decoded_data->new_password)
|
|
);
|
|
|
|
$condition = array(
|
|
'password' => sha1($decoded_data->password),
|
|
'telepon_mitra' => $decoded_data->no_telepon
|
|
);
|
|
$condition2 = array(
|
|
'password' => sha1($decoded_data->new_password),
|
|
'telepon_mitra' => $decoded_data->no_telepon
|
|
);
|
|
$cek_login = $this->Merchantapi_model->get_data_merchant($condition);
|
|
$message = array();
|
|
|
|
if ($cek_login->num_rows() > 0) {
|
|
$upd_regid = $this->Merchantapi_model->edit_profile($reg_id, $decoded_data->no_telepon);
|
|
$get_pelanggan = $this->Merchantapi_model->get_data_merchant($condition2);
|
|
|
|
$message = array(
|
|
'code' => '200',
|
|
'message' => 'found',
|
|
'data' => $get_pelanggan->result()
|
|
);
|
|
$this->response($message, 200);
|
|
} else {
|
|
$message = array(
|
|
'code' => '404',
|
|
'message' => 'wrong password',
|
|
'data' => []
|
|
);
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|
|
function kategorimerchant_get()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
|
|
$kategori = $this->Merchantapi_model->kategori_merchant_active();
|
|
$fitur = $this->Merchantapi_model->fitur_merchant_active();
|
|
|
|
$message = [
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'fitur' => $fitur,
|
|
'kategori' => $kategori,
|
|
];
|
|
$this->response($message, 200);
|
|
}
|
|
|
|
function kategorimerchantbyfitur_post()
|
|
{
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
header("WWW-Authenticate: Basic realm=\"Private Area\"");
|
|
header("HTTP/1.0 401 Unauthorized");
|
|
return false;
|
|
}
|
|
$data = file_get_contents("php://input");
|
|
$decoded_data = json_decode($data);
|
|
|
|
$kategori = $this->Merchantapi_model->kategori_merchant_active_data($decoded_data->idmerchant);
|
|
$fitur = $this->Merchantapi_model->fitur_merchant_active();
|
|
|
|
$message = [
|
|
'code' => '200',
|
|
'message' => 'success',
|
|
'fitur' => $fitur,
|
|
'kategori' => $kategori,
|
|
];
|
|
$this->response($message, 200);
|
|
}
|
|
}
|
|
|