-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetQuery.js
More file actions
144 lines (113 loc) · 4.62 KB
/
setQuery.js
File metadata and controls
144 lines (113 loc) · 4.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
require('dotenv').config({path:__dirname+'/.env'});
var grabRandomCity = require('./utility/grabRandomCity.js');
var populationFormatter = require('./utility/populationFormatter.js');
var spiceUpMyQuery = require('./utility/spiceUpMyQuery.js');
var grabWeatherForecase = require('./utility/grabWeather.js');
const { initializeApp, applicationDefault, cert } = require('firebase-admin/app');
const { getFirestore, Timestamp, FieldValue, Filter } = require('firebase-admin/firestore');
var serviceAccountRoute = '/Users/mikeland/WeatherWindow/config/' + process.env.SERVICE_FILE_NAME;
if (process.env.ENV == "DEV") {
serviceAccountRoute = '/Users/mikeland/newDay/WeatherWindow/config/' + process.env.SERVICE_FILE_NAME;
}
const serviceAccount = require(
serviceAccountRoute
);
initializeApp({
credential: cert(serviceAccount)
});
const db = getFirestore();
var date = new Date();
var prettyDate = date.toLocaleDateString('en-US', {
year: "numeric",
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: 'numeric'
});
var topOfHourDateTime = date.toLocaleDateString('en-US', {
year: "numeric",
month: 'long',
day: 'numeric',
hour: 'numeric'
});
var spiceRating = 4;
console.log("========================\n\nStarting WeatherWindow Set Query Process", prettyDate, "\n");
(async () => {
try {
console.log("Checking For Queries Stuck In Processing");
var stuckQueries = await db.collection("WeatherWindowQueries").where("status", "==", "PROCESSING").get();
if (stuckQueries.docs.length > 0) {
console.log("Records found stuck in PROCESSING, ending process");
process.exit(0);
};
console.log("No Records found stuck in PROCESSING");
console.log("Checking For Queries Already Created This Hour");
var latestDocs = await db.collection("WeatherWindowQueries").orderBy("createdAt", "desc").limit(1).get();
latestDocs.docs.forEach(doc => {
var createdAtDate = doc.data().createdAt.toDate();
var topOfHourCreatedAtDate = createdAtDate.toLocaleDateString('en-US', {
year: "numeric",
month: 'long',
day: 'numeric',
hour: 'numeric'
});
if (topOfHourCreatedAtDate == topOfHourDateTime) {
console.log("Already Processed this hour, ending process");
process.exit(0);
}
})
console.log("First time processing this hour, continuing process");
var pkg = grabRandomCity.grab();
// var pkg = {
// city: "Kabul",
// country: "Afganistan",
// rawPopulation: "1004993580",
// lat_log: "34.5328,69.1658"
// };
var stateOrSpace = " ";
if (pkg.state) {
stateOrSpace = " " + pkg.state + " ";
};
pkg.place = pkg.city + stateOrSpace + pkg.country;
pkg.population = populationFormatter.prettyPop(pkg.rawPopulation)
console.log("Successfully Grabbed Random place:");
console.log(" CITY/COUNTRY:", pkg.city, pkg.country);
console.log(" POPULATION:", pkg.rawPopulation, "(" + pkg.population + ")");
console.log(" LATITUDE, LOGITUDE:", pkg.lat_log);
var weatherSummary = await grabWeatherForecase.grab(pkg.lat_log);
var inOrConjunctionOverride = " in ";
if (pkg.conjunctionOverride) {
inOrConjunctionOverride = " " + pkg.conjunctionOverride + " ";
};
pkg.query = weatherSummary + " weather" + inOrConjunctionOverride + pkg.place;
var spice = spiceUpMyQuery.spiceThis(pkg.query, spiceRating);
if (spice) {
pkg.query = pkg.query + " " + spice;
}
var unixTimeStamp = Date.now();
var dbDoc = {
query: pkg.query,
spice: spice,
weather: weatherSummary,
city: pkg.city,
country: pkg.country,
geminiImage: "PENDING",
openAIImage: "PENDING",
stableDiffusionImage: "PENDING",
createdAt:FieldValue.serverTimestamp(),
status:"PROCESSING",
tweetStatus:"PENDING",
midjourneyImage:"PENDING"
};
if (pkg.state) {
dbDoc.state = pkg.state;
}
await db.collection("WeatherWindowQueries").doc(unixTimeStamp.toString()).set(dbDoc);
console.log("Successfully Set Firebase Doc");
console.log("\n\nEnding WeatherWindow Set Query Process ========================");
process.exit(0);
} catch (err) {
console.log("Error", err);
process.exit(1);
}
})();