Download the PHP package sksso/smartsso-postgresql without Composer

On this page you can find all versions of the php package sksso/smartsso-postgresql. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package smartsso-postgresql

PHP Composer Psalm Security Scan

Dokumentasi SDK SSO Smartkampung untuk Web PHP dengan DB PostgreSQL

1. Deskripsi

SDK SSO ini memungkinkan integrasi yang mudah dengan layanan SSO (Single Sign-On) Smartkampung. Dengan SDK ini, aplikasi dapat dengan mudah memvalidasi dan mengelola autentikasi pengguna melalui SSO Smartkampung.

2. Alur Autentikasi Login SSO

auth_sso

Keterangan:

A. Redirect Login
Redirect ke halaman login SSO.

B. Ekstrak Data
Mengekstrak data kredensial dari server SSO yang sebelumnya data sudah di enkripsi.

C. Get Tiket
Menerima tiket login berupa data enkripsi dari server SSO dengan menggunakan method GET Request.

D. Validasi Tiket
Mevalidasi tiket login yang sebelumnya sudah diterima dari server SSO.

E. Login Auth By ID
Jika tiket valid, maka dilanjut ke proses auth login yang dari bawaan web framework masing-masing tetapi dengan menggunakan metode login by ID user tanpa menggunakan password, dikarenakan bagian login ini tanpa menggunakan password, demi keamanan website, maka daripada itu untuk fungsi auth login ini jadikanlah dalam satu method di controller untuk proses pada poin C,D,E diatas.

F. User Logout
Mengirim data session user ke server SSO untuk dilakukannya proses logout di server

3. Instalasi SDK

Untuk instalasi SDK ini, gunakanlah composer. Buka command promp/terminal, masuk ke direktori utama projek anda, dengan menjalankan perintah berikut:

4. Konfigurasi

A. Import SDK

Isikan kode dibawah ini untuk mengimport SDK di bagian use statements pada class controller. use sksso\SDKlrvlSSO;

B. Set Environment

Parameter Value
ALIAS_ID Untuk mendapatkannya hubungi admin SSO
SECRET_KEY_BODY Untuk mendapatkannya hubungi admin SSO
SECRET_KEY_URL Untuk mendapatkannya hubungi admin SSO

Masukkan value dari parameter environment diatas kedalam fungsi setEnv() yang anda letakkan di controller, sebelumnya anda harus menginisialisasikan kode ini $this->sdkSSO = new SDKlrvlSSO() di bagian atas kode, misalkan dimasukkan kedalam method konstruktor, seperti berikut

C. Login Page

Untuk mengarahkan ke halaman login SSO, gunakan kode berikut

D. Set Konfigurasi Database

Anda dapat meng set koneksi database MySQL dengan kode berikut

E. Sinkronisasi Tabel Database

Sebelum melakukan sinkronisasi tabel database dengan parameter data array yang dikirim oleh server SSO, anda harus mengetahui terlebih dahulu nama-nama parameter yang akan disinkronkan dengan nama-nama kolom pada tabel user/pengguna yang sudah tersedia di database anda, berikut parameter dari server SSO

Nama Parameter Type
nama VARCHAR(50)
phone VARCHAR(20)
email VARCHAR(100)
nik VARCHAR(20)
created_at DATETIME

Dalam kasus ini misalkan nama-nama kolom di tabel user yang ada di database anda seperti berikut ini

Nama Kolom
id
username
password
nama_lengkap
alamat
email
nik
created_by
created_date

Untuk nama-nama kolom tabel wajib ditulis/dimasukkan semua yang ada di tabel database untuk disinkronkan. Sinkronisasi/selaraskan nama-nama kolom tabel diatas dengan nama-nama parameter array dari server SSO, seperti contoh berikut ini

Nama Kolom Tabel Nama Parameter SSO
id NULL
username NULL
password NULL
nama_lengkap nama
alamat NULL
email email
nik nik
created_by NULL
created_date created_at

Jika tabel sudah disinkronisasikan maka rubah data tabel diatas ke bentuk array dengan key

berikut contoh data arraynya

Masukkan data array diatas kedalam fungsi berikut

Berikut kutipan gabungan kode script dari tahapan-tahapan diatas

5. Penggunaan SDK

A. Ekstrak Data Kredensial

Buatlah method di controller untuk menerima dan meng ekstrak data _POST kredensial yang dikirim dari server SSO. Berikut contoh kodenya

Beritahukan ke admin SSO, url endpoint dari method diatas, supaya dapat diakses dari server SSO

B. Cek Validasi Tiket

Buatlah method di controller untuk menerima data _GET tiket yang dikirim dari server SSO. Berikut contoh kodenya

Beritahukan ke admin SSO, url endpoint dari method diatas, supaya dapat diakses dari server SSO.

Dari kode script diatas untuk baris ini Auth::loginUsingId($dataUsers['id']); ini merupakan fungsi dari Laravel(untuk framework lain bisa menyesuaikan), metode ini berfungsi untuk melakukan autentikasi login berdasarkan ID pengguna tanpa memerlukan password.

C. Logout

Berikut merupakan kode script untuk perintah logout user


All versions of smartsso-postgresql with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
guzzlehttp/guzzle Version ^7.0
ext-openssl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package sksso/smartsso-postgresql contains the following files

Loading the files please wait ....