forked from googleworkspace/apps-script-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalytics.gs
141 lines (127 loc) · 4.36 KB
/
analytics.gs
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
/**
* Copyright 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.
*/
// [START apps_script_analytics_accounts]
/**
* Lists Analytics accounts.
*/
function listAccounts() {
try {
const accounts = Analytics.Management.Accounts.list();
if (!accounts.items || !accounts.items.length) {
console.log('No accounts found.');
return;
}
for (let i = 0; i < accounts.items.length; i++) {
const account = accounts.items[i];
console.log('Account: name "%s", id "%s".', account.name, account.id);
// List web properties in the account.
listWebProperties(account.id);
}
} catch (e) {
// TODO (Developer) - Handle exception
console.log('Failed with error: %s', e.error);
}
}
/**
* Lists web properites for an Analytics account.
* @param {string} accountId The account ID.
*/
function listWebProperties(accountId) {
try {
const webProperties = Analytics.Management.Webproperties.list(accountId);
if (!webProperties.items || !webProperties.items.length) {
console.log('\tNo web properties found.');
return;
}
for (let i = 0; i < webProperties.items.length; i++) {
const webProperty = webProperties.items[i];
console.log('\tWeb Property: name "%s", id "%s".',
webProperty.name, webProperty.id);
// List profiles in the web property.
listProfiles(accountId, webProperty.id);
}
} catch (e) {
// TODO (Developer) - Handle exception
console.log('Failed with error: %s', e.error);
}
}
/**
* Logs a list of Analytics accounts profiles.
* @param {string} accountId The Analytics account ID
* @param {string} webPropertyId The web property ID
*/
function listProfiles(accountId, webPropertyId) {
// Note: If you experience "Quota Error: User Rate Limit Exceeded" errors
// due to the number of accounts or profiles you have, you may be able to
// avoid it by adding a Utilities.sleep(1000) statement here.
try {
const profiles = Analytics.Management.Profiles.list(accountId,
webPropertyId);
if (!profiles.items || !profiles.items.length) {
console.log('\t\tNo web properties found.');
return;
}
for (let i = 0; i < profiles.items.length; i++) {
const profile = profiles.items[i];
console.log('\t\tProfile: name "%s", id "%s".', profile.name,
profile.id);
}
} catch (e) {
// TODO (Developer) - Handle exception
console.log('Failed with error: %s', e.error);
}
}
// [END apps_script_analytics_accounts]
// [START apps_script_analytics_reports]
/**
* Runs a report of an Analytics profile ID. Creates a sheet with the report.
* @param {string} profileId The profile ID.
*/
function runReport(profileId) {
const today = new Date();
const oneWeekAgo = new Date(today.getTime() - 7 * 24 * 60 * 60 * 1000);
const startDate = Utilities.formatDate(oneWeekAgo, Session.getScriptTimeZone(),
'yyyy-MM-dd');
const endDate = Utilities.formatDate(today, Session.getScriptTimeZone(),
'yyyy-MM-dd');
const tableId = 'ga:' + profileId;
const metric = 'ga:visits';
const options = {
'dimensions': 'ga:source,ga:keyword',
'sort': '-ga:visits,ga:source',
'filters': 'ga:medium==organic',
'max-results': 25
};
const report = Analytics.Data.Ga.get(tableId, startDate, endDate, metric,
options);
if (!report.rows) {
console.log('No rows returned.');
return;
}
const spreadsheet = SpreadsheetApp.create('Google Analytics Report');
const sheet = spreadsheet.getActiveSheet();
// Append the headers.
const headers = report.columnHeaders.map((columnHeader) => {
return columnHeader.name;
});
sheet.appendRow(headers);
// Append the results.
sheet.getRange(2, 1, report.rows.length, headers.length)
.setValues(report.rows);
console.log('Report spreadsheet created: %s',
spreadsheet.getUrl());
}
// [END apps_script_analytics_reports]