fix: Wildeford tweaks
This commit is contained in:
parent
d1c41f4c01
commit
e074b934a5
|
@ -8,7 +8,6 @@ import { calculateStars } from "../utils/stars.js"
|
||||||
import {upsert} from "../utils/mongo-wrapper.js"
|
import {upsert} from "../utils/mongo-wrapper.js"
|
||||||
|
|
||||||
/* Definitions */
|
/* Definitions */
|
||||||
const GOOGLE_API_KEY = process.env.GOOGLE_API_KEY || getCookie("google-api") // See: https://developers.google.com/sheets/api/guides/authorizing#APIKey
|
|
||||||
const SHEET_ID = "1xcgYF7Q0D95TPHLLSgwhWBHFrWZUGJn7yTyAhDR4vi0" // spreadsheet key is the long id in the sheets URL
|
const SHEET_ID = "1xcgYF7Q0D95TPHLLSgwhWBHFrWZUGJn7yTyAhDR4vi0" // spreadsheet key is the long id in the sheets URL
|
||||||
const endpoint = `https://docs.google.com/spreadsheets/d/${SHEET_ID}/edit#gid=0`
|
const endpoint = `https://docs.google.com/spreadsheets/d/${SHEET_ID}/edit#gid=0`
|
||||||
// https://docs.google.com/spreadsheets/d/1xcgYF7Q0D95TPHLLSgwhWBHFrWZUGJn7yTyAhDR4vi0/edit#gid=0&range=C4
|
// https://docs.google.com/spreadsheets/d/1xcgYF7Q0D95TPHLLSgwhWBHFrWZUGJn7yTyAhDR4vi0/edit#gid=0&range=C4
|
||||||
|
@ -44,7 +43,8 @@ async function fetchGoogleDoc(google_api_key){
|
||||||
let data = rows[i]._rawData
|
let data = rows[i]._rawData
|
||||||
if(data.length == 0) isEnd = true;
|
if(data.length == 0) isEnd = true;
|
||||||
if(!isEnd){
|
if(!isEnd){
|
||||||
let result = ({...formatRow(data), "url": endpoint + `&range=A${i}`})
|
let result = ({...formatRow(data), "url": endpoint + `&range=A${i + 2}`})
|
||||||
|
// +2: +1 for the header row, +1 for starting at 1 and not at 0.
|
||||||
// console.log(result)
|
// console.log(result)
|
||||||
results.push(result)
|
results.push(result)
|
||||||
|
|
||||||
|
@ -115,6 +115,7 @@ export async function wildeford_inner(google_api_key) {
|
||||||
//example()
|
//example()
|
||||||
|
|
||||||
export async function wildeford(){
|
export async function wildeford(){
|
||||||
|
const GOOGLE_API_KEY = process.env.GOOGLE_API_KEY || getCookie("google-api") // See: https://developers.google.com/sheets/api/guides/authorizing#APIKey
|
||||||
await applyIfCookieExists(GOOGLE_API_KEY, wildeford_inner)
|
await applyIfCookieExists(GOOGLE_API_KEY, wildeford_inner)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user