37 changed files with 314 additions and 453 deletions
@ -0,0 +1,54 @@
|
||||
<?php |
||||
|
||||
namespace App\Controllers; |
||||
|
||||
use CodeIgniter\Controller; |
||||
use App\Models\Mauth; |
||||
|
||||
class Auth extends Controller |
||||
{ |
||||
public function index() |
||||
{ |
||||
helper(['form']); |
||||
echo view('pages/loginv'); |
||||
} |
||||
public function login() |
||||
{ |
||||
$session = session(); |
||||
$model = new Mauth(); |
||||
$uname = $this->request->getVar('username'); |
||||
$password = $this->request->getVar('password'); |
||||
|
||||
$param = array('name' => $uname, 'passwd' => $password); |
||||
$data = $model->cekuser($param)->getRowArray(); |
||||
// var_dump($data); |
||||
//exit(); |
||||
if ($data) { |
||||
|
||||
$ses_data = [ |
||||
'nip' => $data['NIP9'], |
||||
'nipp' => $data['NIP18'], |
||||
'nama' => $data['NAMA'], |
||||
'kppadm' => $data['KPPADM'], |
||||
'jabatan' => $data['NAMA_JABATAN'], |
||||
'kantor' => $data['NAMA_KANTOR'], |
||||
'seksi' => $data['NAMA_UNIT_ES3'], |
||||
'isLogin' => true |
||||
]; |
||||
$session->set($ses_data); |
||||
return redirect()->to(base_url('Home')); |
||||
} else { |
||||
//print_r('user tidak ada'); |
||||
//exit; |
||||
$session->setFlashdata('msg', 'User Tidak ada'); |
||||
return redirect()->to('auth'); |
||||
} |
||||
} |
||||
|
||||
public function logout() |
||||
{ |
||||
$session = session(); |
||||
$session->destroy(); |
||||
return redirect()->to(base_url('auth')); |
||||
} |
||||
} |
@ -0,0 +1,48 @@
|
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use CodeIgniter\Model; |
||||
|
||||
class Mpemby extends Model |
||||
{ |
||||
|
||||
function getPenn($param) |
||||
{ |
||||
$tahun = $param['tahun']; |
||||
$bln = date('m'); |
||||
$query = $this->db->query("SELECT NM_KANWIL, TARGET, SUM(PENERIMAAN_BERJALAN) PENB, SUM(PENERIMAAN_LALU) PENL, |
||||
(SUM(PENERIMAAN_BERJALAN)/TARGET)*100 PENCAPAIAN, ((SUM(PENERIMAAN_BERJALAN)-SUM(PENERIMAAN_LALU))/SUM(PENERIMAAN_LALU))*100 PERTUMBUHAN |
||||
FROM KINERJA_PENERIMAAN |
||||
WHERE THN_KINERJA = '" . $tahun . "' AND TO_NUMBER(BLN_KINERJA) |
||||
BETWEEN TO_NUMBER('01') AND TO_NUMBER('" . $bln . "') GROUP BY NM_KANWIL, TARGET"); |
||||
return $query; |
||||
} |
||||
|
||||
|
||||
function getUpd() |
||||
{ |
||||
$query = $this->db->query("SELECT LAST_DDL_TIME UPD |
||||
FROM DBA_OBJECTS |
||||
WHERE owner = 'GENAPP' |
||||
AND object_name = 'KINERJA_PENERIMAAN'"); |
||||
return $query; |
||||
} |
||||
|
||||
|
||||
function getKat($param) |
||||
{ |
||||
$tahun = $param['tahun']; |
||||
$tahunl = $tahun - 1; |
||||
$bln = date('m'); |
||||
$query = $this->db->query("SELECT CASE WHEN KD_KATEGORI IS NULL THEN '-' ELSE KD_KATEGORI END KODE, |
||||
CASE WHEN KD_KATEGORI IS NULL THEN 'UNKNOWN' ELSE NM_KATEGORI END NMKAT, |
||||
SUM(CASE WHEN THNBYR = '" . $tahun . "' AND BLNBYR = '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) KPENN, |
||||
SUM(CASE WHEN THNBYR = '" . $tahunl . "' AND BLNBYR = '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) KPENP |
||||
FROM PERKATEGORI_MV |
||||
GROUP BY KD_KATEGORI,NM_KATEGORI |
||||
ORDER BY KD_KATEGORI ASC |
||||
"); |
||||
return $query; |
||||
} |
||||
} |
@ -1,143 +0,0 @@
|
||||
#-------------------------------------------------------------------- |
||||
# Example Environment Configuration file |
||||
# |
||||
# This file can be used as a starting point for your own |
||||
# custom .env files, and contains most of the possible settings |
||||
# available in a default install. |
||||
# |
||||
# By default, all of the settings are commented out. If you want |
||||
# to override the setting, you must un-comment it by removing the '#' |
||||
# at the beginning of the line. |
||||
#-------------------------------------------------------------------- |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# ENVIRONMENT |
||||
#-------------------------------------------------------------------- |
||||
|
||||
CI_ENVIRONMENT = development |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# APP |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# app.baseURL = '' |
||||
# If you have trouble with `.`, you could also use `_`. |
||||
# app_baseURL = '' |
||||
# app.forceGlobalSecureRequests = false |
||||
# app.CSPEnabled = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# DATABASE |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# database.default.hostname = localhost |
||||
# database.default.database = ci4 |
||||
# database.default.username = root |
||||
# database.default.password = root |
||||
# database.default.DBDriver = MySQLi |
||||
# database.default.DBPrefix = |
||||
# database.default.port = 3306 |
||||
|
||||
# database.tests.hostname = localhost |
||||
# database.tests.database = ci4_test |
||||
# database.tests.username = root |
||||
# database.tests.password = root |
||||
# database.tests.DBDriver = MySQLi |
||||
# database.tests.DBPrefix = |
||||
# database.tests.port = 3306 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# CONTENT SECURITY POLICY |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# contentsecuritypolicy.reportOnly = false |
||||
# contentsecuritypolicy.defaultSrc = 'none' |
||||
# contentsecuritypolicy.scriptSrc = 'self' |
||||
# contentsecuritypolicy.styleSrc = 'self' |
||||
# contentsecuritypolicy.imageSrc = 'self' |
||||
# contentsecuritypolicy.baseURI = null |
||||
# contentsecuritypolicy.childSrc = null |
||||
# contentsecuritypolicy.connectSrc = 'self' |
||||
# contentsecuritypolicy.fontSrc = null |
||||
# contentsecuritypolicy.formAction = null |
||||
# contentsecuritypolicy.frameAncestors = null |
||||
# contentsecuritypolicy.frameSrc = null |
||||
# contentsecuritypolicy.mediaSrc = null |
||||
# contentsecuritypolicy.objectSrc = null |
||||
# contentsecuritypolicy.pluginTypes = null |
||||
# contentsecuritypolicy.reportURI = null |
||||
# contentsecuritypolicy.sandbox = false |
||||
# contentsecuritypolicy.upgradeInsecureRequests = false |
||||
# contentsecuritypolicy.styleNonceTag = '{csp-style-nonce}' |
||||
# contentsecuritypolicy.scriptNonceTag = '{csp-script-nonce}' |
||||
# contentsecuritypolicy.autoNonce = true |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# COOKIE |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# cookie.prefix = '' |
||||
# cookie.expires = 0 |
||||
# cookie.path = '/' |
||||
# cookie.domain = '' |
||||
# cookie.secure = false |
||||
# cookie.httponly = false |
||||
# cookie.samesite = 'Lax' |
||||
# cookie.raw = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# ENCRYPTION |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# encryption.key = |
||||
# encryption.driver = OpenSSL |
||||
# encryption.blockSize = 16 |
||||
# encryption.digest = SHA512 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# HONEYPOT |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# honeypot.hidden = 'true' |
||||
# honeypot.label = 'Fill This Field' |
||||
# honeypot.name = 'honeypot' |
||||
# honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>' |
||||
# honeypot.container = '<div style="display:none">{template}</div>' |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# SECURITY |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# security.csrfProtection = 'cookie' |
||||
# security.tokenRandomize = false |
||||
# security.tokenName = 'csrf_token_name' |
||||
# security.headerName = 'X-CSRF-TOKEN' |
||||
# security.cookieName = 'csrf_cookie_name' |
||||
# security.expires = 7200 |
||||
# security.regenerate = true |
||||
# security.redirect = false |
||||
# security.samesite = 'Lax' |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# SESSION |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# session.driver = 'CodeIgniter\Session\Handlers\FileHandler' |
||||
# session.cookieName = 'ci_session' |
||||
# session.expiration = 7200 |
||||
# session.savePath = null |
||||
# session.matchIP = false |
||||
# session.timeToUpdate = 300 |
||||
# session.regenerateDestroy = false |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# LOGGER |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# logger.threshold = 4 |
||||
|
||||
#-------------------------------------------------------------------- |
||||
# CURLRequest |
||||
#-------------------------------------------------------------------- |
||||
|
||||
# curlrequest.shareOptions = false |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
__ci_last_regenerate|i:1708913123;_ci_previous_url|s:26:"https://localhost/enginen/";nip|s:9:"060106375";nama|s:12:"WAWAN SUANDI";kppadm|s:3:"170";jabatan|s:9:"Pelaksana";kantor|s:24:"Kanwil DJP Jawa Tengah I";seksi|s:45:"Bidang Data dan Pengawasan Potensi Perpajakan"; |
||||
__ci_last_regenerate|i:1708915293;_ci_previous_url|s:26:"https://localhost/enginen/";nip|s:9:"060106375";nama|s:12:"WAWAN SUANDI";kppadm|s:3:"170";jabatan|s:9:"Pelaksana";kantor|s:24:"Kanwil DJP Jawa Tengah I";seksi|s:45:"Bidang Data dan Pengawasan Potensi Perpajakan"; |
Loading…
Reference in new issue