-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement basic parser of /locations page
This needs to be run in the Devtools console #10
- Loading branch information
Showing
1 changed file
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
Copyright 2023 Google LLC | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
|
||
|
||
/* | ||
Final output will be a csv like this: | ||
Product | region1 | region2 | ... | ||
---------------------------------- | ||
product1 | true | false | ... | ||
product2 | true | false | ... | ||
... | ||
*/ | ||
|
||
/* | ||
data object is: | ||
{ | ||
"product1": { | ||
"region1": true, | ||
"region2": false, | ||
... | ||
}, | ||
... | ||
} | ||
*/ | ||
const data = []; | ||
|
||
function extractLocations(headerRow) { | ||
const headerCells = headerRow.querySelectorAll("th"); | ||
const locations = []; | ||
for (const cell of headerCells) { | ||
const text = cell.textContent.trim(); | ||
if(text != "Products") { | ||
// extract "europe-west1" from "Belgium (europe-west1) Low CO2" | ||
const match = text.match(/\((.*)\)/); | ||
if(match) { | ||
const region = match[1]; | ||
locations.push(region); | ||
} else { | ||
console.error(`Cannot extract region for ${text}`); | ||
} | ||
} | ||
} | ||
return locations; | ||
} | ||
|
||
function extractProductAvailability(row) { | ||
|
||
const tHeader = row.querySelector("th"); | ||
if (!tHeader) {s | ||
console.error('Cannot extract product name'); | ||
return; | ||
} | ||
|
||
let product = tHeader.textContent.trim(); | ||
|
||
// if product ends with a digit, remove it. (These are footnotes) | ||
while(product.match(/.*\d/) || product.match(/.*,/)) { | ||
product = product.slice(0, -1).trim(); | ||
} | ||
|
||
const availability = []; | ||
const cells = row.querySelectorAll("td"); | ||
if(cells.length === 0) { | ||
return; | ||
} | ||
for (const cell of cells) { | ||
// check if cell contains a <span> with aria-label="available" | ||
const available = cell.querySelector("span[aria-label='available']"); | ||
if (available) { | ||
availability.push(true); | ||
} else { | ||
availability.push(false); | ||
} | ||
} | ||
return {product, availability}; | ||
} | ||
|
||
function extractDataForContinent(continentDOM) { | ||
const rows = continentDOM.querySelectorAll("tr"); | ||
|
||
const locations = extractLocations(rows[0]); | ||
|
||
for (let i = 1; i < rows.length; i++) { | ||
const productAvailability = extractProductAvailability(rows[i]); | ||
if(productAvailability) { | ||
const {product, availability} = productAvailability; | ||
if(!data[product]) { | ||
data[product] = {}; | ||
} | ||
for (let l = 0; l < locations.length; l++) { | ||
data[product][locations[l]] = availability[l]; | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
||
function parseAboutLocations(document) { | ||
|
||
const continents = document.querySelectorAll(".cloud-table"); | ||
|
||
// The last tab is "multi region" | ||
for (let c = 0; c < continents.length - 1; c++) { | ||
extractDataForContinent(continents[c]); | ||
} | ||
|
||
} | ||
parseAboutLocations(document); | ||
|
||
// Normalize the data | ||
console.log(data); |