thandonguocmo2020 / laravel-google by thandonguocmo2020

google in laravel
11
0
2
Package Data
Maintainer Username: thandonguocmo2020
Maintainer Contact: thandonguocmo2020@gmail.com (HoangHiep)
Package Create Date: 2016-07-07
Package Last Update: 2016-07-07
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 03:03:45
Package Statistics
Total Downloads: 11
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

Hoàng Hiệp API Google Client in Laravel Master

Chuẩn Bị

Vào ứng dụng laravel vào file composer.json thêm dòng :

"minimum-stability": "dev",

Để sửa lỗi

at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability

sau đó mở composer chạy lệnh tải gói

composer require hoanghiep/laravel-google-api

Sau khi tải gói lưu ý chuẩn bị :

  • bật apache rewrite_module

Sửa lỗi cURL error 60: SSL :

tải file https://curl.haxx.se/ca/cacert.pem

để vào thư mục php của bạn

sau đó sửa file php.ini

tìm dòng ;curl.cainfo sửa thành

curl.cainfo= "path/cacert.pem"

Lưu ý các phiên bản sử dụng có thể ko sửa được do phiên bản apache ví dụ dùng wampp 5.5.12 ko được nhưng bản 5.6.12 lại được.

1. cấu hình database.

cấu hình cơ sở dữ liệu trong tập tin .env

2. thêm provider vào config/app.php

Hoanghiep\Googleapi\GoogleClientProvider::class

3. Chạy lệnh xuất những file cần thiết

php artisan vendor:publish

Các file được tạo ra gồm

  • file tạo database lưu trữ trong database\migrations\2016_07_03_010808_create_googles_table.php
  • file config dòng chảy xác thực trong config/google.php
  • file làm việc với model trong app\Google.php
  • file mẫu các dịch vụ google sẽ sử dụng trong app\Providers\GoogleServiceProvider.php
  • file mẫu controller sử dụng gọi server và lấy mã ủy quyền và sử dụng thư viện trong app\Http\Controllers\Hoanghiep\UserinfoController.php

4. Cấu hình dòng chảy tới máy chủ google trong config/google.php

  • AppName => tên ứng dụng
  • AppKey => khóa API truy cập dữ liệu công cộng
  • client_id => khóa client id máy chủ ủy quyền
  • client_secret => khóa lựa chọn máy chủ ủy quyền
  • redirect => thay thế bằng url dụng http://localhost/{projiect-name}/social/google/handle/token => yêu cầu trong máy chủ bắt buộc có url này để gói xử lý.
  • scopes=> phạm vi cần yêu cầu người dùng đồng ý để có thể truy cập dữ liệu
  • redirectToPath => sau khi sử lý thành công url sẽ được chuyển hướng tới trang bạn cần chuyển demo là trang /test và controller xử lý là UserinfoController@index

5. Chạy lệnh tạo bảng dữ liệu

php artisan migrate

6. Chạy thử dòng chảy

localhost/project-name/social/google/redirect

7. Thấy báo lỗi không tìm thấy route url /test

NotFoundHttpException in RouteCollection.php line 161:

sửa khai báo url như sau :

vào app/Http/routes.php

thêm định nghĩa url /test gọi đến UserinfoController@index

Route::get('/test',["middleware"=>"web","uses"=>"Hoanghiep\UserinfoController@index"]);

nếu ko dùng user /test định nghĩa trong file config/google redirectPath bạn dùng home chẳng hạn thì nó sẽ như này

Route::get('/home',["middleware"=>"web","uses"=>"Hoanghiep\UserinfoController@index"]);

8. Xem kết quả và dựa vào controller làm mẫu để khởi tạo controller khác muốn sử dụng thẻ ủy quyền và truy cập dữ liệu của google api.

9 Extension kế thừa class GoogleController

use \Hoanghiep\Googleapi\hoanghiep\GoogleController;

// ke thua lop xu ly class UserinfoController extends GoogleController {

}

  • config google client

$client = App::make("Google_Client");

  • handle Token "xử lý token"

$this->handleProvider($request);

  • getToken "lấy token và số lần làm mới thẻ"

$token = $this->client_array;

  • Check Token

if (!isset($token[0])): return redirect()->route("google.redirect"); endif;

  • get refresh_Token "lấy số lần làm mới" $number_refresh = $token[0];

  • Check Token "kiểm tra nếu còn 1 thì làm yêu cầu truy cập lại " if ($number_refresh == 1): return redirect()->route("google.redirect");

  • getAccessToken "lấy thẻ truy cập" $accessToken = $token[1];

  • setAccessToken "Sử dụng thẻ truy cập" $client->setAccessToken($accessToken);

  • gọi api đã khai báo trong và truyền vào $client hiện tại $google_oauth = App::make("Google_Service_Oauth2", [$client]); $user = $google_oauth->userinfo->get();

  • hiển thị kết quả

     dd($user);
    

Sử dụng Class Controller Khác Và Provider Service Khác ví dụ Youtube

  1. Bật các API youtube service

  2. Vào config/app.php thêm provider

    App\Providers\GoogleServiceProvider::class,

  3. Thêm các class dịch vụ cần sử dụng ví dụ // ở trên class use Google_Service_Youtube; // thêm một class mới vào container service laravel trong method register(){

    $this->app->bind("Google_Service_Youtube", function ($app, array $client) { return new Google_Service_Youtube($client[0]); });

}

  1. Cấu hình thêm ủy quyền mới phạm vi truy cập dữ liệu trong config/google.php chú ý bật các Api cần sử dụng
  2. Khởi tạo route

Route::get('social/google/youtube',["middleware"=>"web","uses"=>"Hoanghiep\YoutubeController@index"]);

  1. Chạy lệnh tạo controller :

php artisan make:controller Hoanghiep\YoutubeController

  1. Vào file controller YoutubeController sử dụng lớp kế thừa GoogleClientController tương tự UserinfoController.php

trông như thế này :