Fetch Google Sheets with Google Sheets API (v4) and store it to your WordPress database. You can also filter that data before saving.
- PHP 5.5+
- Composer
$ cd /path-to-your/wp-content/plugins/
$ git clone git@github.com:sectsect/google-spreadsheet-to-db.git
$ cd google-spreadsheet-to-db/functions/composer/
$ composer install
That's it:ok_hand:
By default, a new spreadsheet cannot be accessed via Google’s API. We’ll need to go to your Google APIs console and create a new project and set it up to expose your Spreadsheets’ data.
- Go to the Google APIs Console.
- Create a new project.
- Click Enable API. Search for and enable the Google Sheets API.
- Create credentials for a Web Server to access Application Data.
- Name the service account and grant it a Project Role of Editor.
- Download the JSON file.
- Copy the JSON file to your app directory and rename it to
client_secret.json
⚠️ Setclient_secret.json
in a location to deny web access on your server.
We now have a big chunk of authentication information, including what Google calls a client_email
, which uniquely represents this OAuth service account.
Grab the value of client_email
from your client_secret.json
, and head back to your spreadsheet. Click the Share button in the top right, and paste the client_email
value into the field to give it edit rights.
Hit send. That’s it! 👌
- Set the
define()
constants for client_secret.json inwp-config.php
.
define( 'GOOGLE_SS2DB_CLIENT_SECRET_PATH', '/path/to/your/client_secret.json' );
- Go to
Settings
->Google Spreadsheet to DB
on your WordPress Admin-Panel. - Set the following values and save it once.
- Data format to be stored in database
- json_encode
- json_encode (JSON_UNESCAPED_UNICODE)
- Click the
Import from Google Spreadsheet
button. 🎉
- Spreadsheet ID
- Spreadsheet name (Optional)
- Single Sheet name
- Top Header Row
- Title (Optional)
You can edit the array got from Google API with add_filter( 'google_ss2db_before_save', $function_to_add )
in your functions.php before saving to database.
add_filter( 'google_ss2db_before_save', function ( $row, $worksheetid, $worksheetname, $sheetname ) {
// Example
if ( $worksheetname === 'My Spreadsheet' && $sheetname === 'Sheet1' ) {
// Do something.
$return = $something;
} else {
$return = $row;
}
return $return;
}, 10, 3 );
And also use add_filter('google_ss2db_after_save', $return_array )
to perform any processing with the return value.
add_filter( 'google_ss2db_after_save', function ( $array ) {
if ( 'My Spreadsheet' === $worksheetname ) {
// $id = $array['id'];
// $date = $array['date'];
// $title = $array['title'];
// $value = $array['value'];
// $work_sheet_id = $array['worksheet_id'];
// $work_sheet_name = $array['worksheet_name'];
// $sheet_name = $array['sheet_name'];
// $result = $array['result'];
// Do something...
$return = $something;
} else {
$return = $array;
}
return $return;
} );
new Google_Spreadsheet_To_DB_Query();
Parameter | Type | Notes | Default Value | ||
---|---|---|---|---|---|
where | array | array() |
|||
relation | string | AND or OR |
AND |
||
[array] | array | ||||
key | string | id or date or worksheet_id or worksheet_name or sheet_name or title |
false |
||
value | int | e.g. 3 / 2020-09-01 12:00:00 |
false |
||
compare | string | e.g. = > < >= <= <> != |
= |
||
orderby | string | id or date or worksheet_id or worksheet_name or sheet_name or title |
date |
||
order | string | DESC or ASC |
DESC |
||
limit | int | number of row to get | All Data 📝 You can also use -1 to get all data. |
||
offset | int | number of row to displace or pass over | 0 |
$sheet = new Google_Spreadsheet_To_DB_Query();
$rows = $sheet->getrow();
foreach ( $rows as $row ) {
$id = $row->id;
$date = $row->date;
$val = json_decode( $row->value );
}
$args = array(
'orderby' => 'id',
'order' => 'ASC',
'limit' => 3,
'offset' => 3,
);
$sheet = new Google_Spreadsheet_To_DB_Query( $args );
$rows = $sheet->getrow();
foreach ( $rows as $row ) {
$id = $row->id;
$date = $row->date;
$val = json_decode( $row->value );
}
$args = array(
'where' => array(
array(
'key' => 'id',
'value' => 3,
)
),
);
$args = array(
'orderby' => 'id',
'order' => 'ASC',
'limit' => 3,
'where' => array(
array(
'key' => 'worksheet_name',
'value' => 'My Spreadsheet',
'compare' => '='
),
),
);
$args = array(
'where' => array(
array(
'key' => 'date',
'value' => '2020-08-01 12:34:56',
'compare' => '>=',
)
),
);
$args = array(
'orderby' => 'id',
'order' => 'DESC',
'limit' => 10,
'offset' => 10,
'where' => array(
'relation' => 'AND', // or 'OR'
array(
'key' => 'date',
'value' => '2020-08-01 12:34:56',
'compare' => '>='
),
array(
'key' => 'worksheet_name',
'value' => 'My Spreadsheet',
'compare' => '='
),
),
);
- Tested on WP v4.8.0
-
This plugin saves Spreadsheet's data to the global area, not to each post. If you want to have Spredsheet data for individual posts, you can link data
ID
with custom fields. -
The data is added and stored in the
wp_google_ss2db
table as a JSON-encoded array.id date worksheet_id worksheet_name sheet_name title value 1 2021-08-27 00:00:00 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms My Spreadsheet Sheet1 Data-01 {"area":{"a":["brooklyn","bronx","Queens","Manhattan"],"b":["brooklyn","bronx","Queens","Manhattan"]}}
-
This Plugin does not hosting on the wordpress.org repo in order to prevent a flood of support requests from wide audience.
See CHANGELOG file.
See LICENSE file.
✌️
A little project by @sectsect