-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackend.gs
More file actions
280 lines (243 loc) · 7.18 KB
/
Backend.gs
File metadata and controls
280 lines (243 loc) · 7.18 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
// Backend.gs - Supporting functions for UI and report execution
// Show the main sidebar (modern interface)
function showSidebar() {
try {
var html = HtmlService.createHtmlOutputFromFile('Sidebar')
.setTitle('GA4 Analytics Connector')
.setWidth(320);
SpreadsheetApp.getUi().showSidebar(html);
return { success: true };
} catch (error) {
Logger.log('Error showing sidebar: ' + error.toString());
throw error;
}
}
// Show the report builder modal
function showReportBuilder(existingReport) {
try {
var html = HtmlService.createHtmlOutputFromFile('ReportBuilder')
.setTitle('GA4 Analytics Import')
.setWidth(1400) // Wider for better layout
.setHeight(820); // Slightly taller but constrained
SpreadsheetApp.getUi().showModalDialog(html, 'GA4 Analytics Import');
return { success: true };
} catch (error) {
Logger.log('Error showing report builder: ' + error.toString());
return { success: false, error: error.toString() };
}
}
function getAuthUrl() {
return getService().getAuthorizationUrl();
}
function isAuthorized() {
var service = getService();
return service && service.hasAccess();
}
function disconnectService() {
var service = getService();
if (service) service.reset();
return "Disconnected";
}
function executeReportConfig(config) {
try {
// Validate configuration
var validation = validateReportConfiguration(config);
if (!validation.isValid) {
return {
success: false,
error: validation.errors.join(', ')
};
}
// Check sync limit
var usageData = getUserUsageData();
if (usageData.count >= usageData.limit) {
return {
success: false,
error: 'Monthly sync limit exceeded',
requiresUpgrade: true
};
}
// Execute report
return executeReport({
name: config.name,
propertyId: config.propertyId,
dimensions: config.dimensions,
metrics: config.metrics,
dateRange: config.dateRange,
limit: config.limit
});
} catch (error) {
Logger.log('Error executing report config: ' + error.toString());
return {
success: false,
error: error.toString()
};
}
}
// Get popular report template for saving
function getPopularReportTemplate(reportId) {
try {
var popularReports = getPopularReports();
var report = null;
// ES5 compatible find
for (var i = 0; i < popularReports.length; i++) {
if (popularReports[i].id === reportId) {
report = popularReports[i];
break;
}
}
if (!report) {
return {
success: false,
error: 'Popular report not found'
};
}
// For popular reports, we need to get the user's default property
var properties = listGA4Properties();
if (!properties.success || properties.properties.length === 0) {
return {
success: false,
error: 'No GA4 properties available'
};
}
// Use the first available property
report.propertyId = properties.properties[0].name.replace('properties/', '');
return {
success: true,
report: report
};
} catch (error) {
Logger.log('Error getting popular report template: ' + error.toString());
return {
success: false,
error: error.toString()
};
}
}
// Usage tracking and billing
function initiateUpgradeFlow() {
try {
// For Phase 2: Integrate with Stripe
// For now, show information dialog
var ui = SpreadsheetApp.getUi();
var response = ui.alert(
'Upgrade to Pro',
'Upgrade to Pro for unlimited syncs and advanced features!\n\n' +
'• Unlimited monthly syncs\n' +
'• Advanced scheduling\n' +
'• Priority support\n' +
'• Custom report templates\n\n' +
'Contact us at support@your-domain.com to upgrade.',
ui.ButtonSet.OK
);
return {
success: true,
message: 'Upgrade information shown'
};
} catch (error) {
Logger.log('Error initiating upgrade: ' + error.toString());
return {
success: false,
error: error.toString()
};
}
}
// Utility functions for UI
function formatDate(date, format) {
try {
format = format || 'yyyy-MM-dd';
return Utilities.formatDate(new Date(date), Session.getScriptTimeZone(), format);
} catch (error) {
return date;
}
}
function formatNumber(num, decimals) {
try {
decimals = decimals || 0;
return parseFloat(num).toFixed(decimals);
} catch (error) {
return num;
}
}
// Enhanced error handling and user feedback
function handleUserError(error, context) {
var errorMessage = '';
var suggestions = [];
if (error.toString().includes('PERMISSION_DENIED')) {
errorMessage = 'Permission denied. Please check your Google Analytics access.';
suggestions.push('Verify you have access to the selected GA4 property');
suggestions.push('Try disconnecting and reconnecting your account');
} else if (error.toString().includes('QUOTA_EXCEEDED')) {
errorMessage = 'API quota exceeded. Please try again later.';
suggestions.push('Wait a few minutes before trying again');
suggestions.push('Consider reducing the date range or row limit');
} else if (error.toString().includes('INVALID_ARGUMENT')) {
errorMessage = 'Invalid report configuration.';
suggestions.push('Check your selected dimensions and metrics');
suggestions.push('Ensure your date range is valid');
} else {
errorMessage = 'An unexpected error occurred.';
suggestions.push('Try refreshing the add-on');
suggestions.push('Contact support if the issue persists');
}
return {
error: errorMessage,
suggestions: suggestions,
context: context,
timestamp: new Date().toISOString()
};
}
// Health check and diagnostics
function performHealthCheck() {
var checks = {};
try {
// Check authentication
var authResult = checkAuthenticationStatus();
checks.authentication = {
status: authResult.isConnected ? 'healthy' : 'error',
details: authResult
};
// Check GA4 API access
var gaResult = testGA4Connection();
checks.ga4_api = {
status: gaResult.success ? 'healthy' : 'error',
details: gaResult
};
// Check user data
if (authResult.isConnected) {
try {
var userData = getUserUsageData();
checks.user_data = {
status: 'healthy',
details: userData
};
} catch (userError) {
checks.user_data = {
status: 'error',
details: { error: userError.toString() }
};
}
}
// Calculate overall status (ES5 compatible)
var overallStatus = 'healthy';
for (var checkName in checks) {
if (checks.hasOwnProperty(checkName) && checks[checkName].status !== 'healthy') {
overallStatus = 'degraded';
break;
}
}
return {
success: true,
timestamp: new Date().toISOString(),
checks: checks,
overall_status: overallStatus
};
} catch (error) {
Logger.log('Error performing health check: ' + error.toString());
return {
success: false,
error: error.toString(),
timestamp: new Date().toISOString()
};
}
}