forked from googleworkspace/apps-script-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadsense.gs
159 lines (147 loc) · 5.02 KB
/
adsense.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* 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_adsense_list_accounts]
/**
* Lists available AdSense accounts.
*/
function listAccounts() {
let pageToken;
do {
const response = AdSense.Accounts.list({pageToken: pageToken});
if (!response.accounts) {
console.log('No accounts found.');
return;
}
for (const account of response.accounts) {
console.log('Found account with resource name "%s" and display name "%s".',
account.name, account.displayName);
}
pageToken = response.nextPageToken;
} while (pageToken);
}
// [END apps_script_adsense_list_accounts]
// [START apps_script_adsense_list_ad_clients]
/**
* Logs available Ad clients for an account.
*
* @param {string} accountName The resource name of the account that owns the
* collection of ad clients.
*/
function listAdClients(accountName) {
let pageToken;
do {
const response = AdSense.Accounts.Adclients.list(accountName, {
pageToken: pageToken
});
if (!response.adClients) {
console.log('No ad clients found for this account.');
return;
}
for (const adClient of response.adClients) {
console.log('Found ad client for product "%s" with resource name "%s".',
adClient.productCode, adClient.name);
console.log('Reporting dimension ID: %s',
adClient.reportingDimensionId ?? 'None');
}
pageToken = response.nextPageToken;
} while (pageToken);
}
// [END apps_script_adsense_list_ad_clients]
// [START apps_script_adsense_list_ad_units]
/**
* Lists ad units.
* @param {string} adClientName The resource name of the ad client that owns the collection
* of ad units.
*/
function listAdUnits(adClientName) {
let pageToken;
do {
const response = AdSense.Accounts.Adclients.Adunits.list(adClientName, {
pageSize: 50,
pageToken: pageToken
});
if (!response.adUnits) {
console.log('No ad units found for this ad client.');
return;
}
for (const adUnit of response.adUnits) {
console.log('Found ad unit with resource name "%s" and display name "%s".',
adUnit.name, adUnit.displayName);
}
pageToken = response.nextPageToken;
} while (pageToken);
}
// [END apps_script_adsense_list_ad_units]
// [START apps_script_adsense_generate_report]
/**
* Generates a spreadsheet report for a specific ad client in an account.
* @param {string} accountName The resource name of the account.
* @param {string} adClientReportingDimensionId The reporting dimension ID
* of the ad client.
*/
function generateReport(accountName, adClientReportingDimensionId) {
// Prepare report.
const today = new Date();
const oneWeekAgo = new Date(today.getTime() - 7 * 24 * 60 * 60 * 1000);
const report = AdSense.Accounts.Reports.generate(accountName, {
// Specify the desired ad client using a filter.
filters: ['AD_CLIENT_ID==' + escapeFilterParameter(adClientReportingDimensionId)],
metrics: ['PAGE_VIEWS', 'AD_REQUESTS', 'AD_REQUESTS_COVERAGE', 'CLICKS',
'AD_REQUESTS_CTR', 'COST_PER_CLICK', 'AD_REQUESTS_RPM',
'ESTIMATED_EARNINGS'],
dimensions: ['DATE'],
...dateToJson('startDate', oneWeekAgo),
...dateToJson('endDate', today),
// Sort by ascending date.
orderBy: ['+DATE']
});
if (!report.rows) {
console.log('No rows returned.');
return;
}
const spreadsheet = SpreadsheetApp.create('AdSense Report');
const sheet = spreadsheet.getActiveSheet();
// Append the headers.
sheet.appendRow(report.headers.map((header) => header.name));
// Append the results.
sheet.getRange(2, 1, report.rows.length, report.headers.length)
.setValues(report.rows.map((row) => row.cells.map((cell) => cell.value)));
console.log('Report spreadsheet created: %s',
spreadsheet.getUrl());
}
/**
* Escape special characters for a parameter being used in a filter.
* @param {string} parameter The parameter to be escaped.
* @return {string} The escaped parameter.
*/
function escapeFilterParameter(parameter) {
return parameter.replace('\\', '\\\\').replace(',', '\\,');
}
/**
* Returns the JSON representation of a Date object (as a google.type.Date).
*
* @param {string} paramName the name of the date parameter
* @param {Date} value the date
* @return {object} formatted date
*/
function dateToJson(paramName, value) {
return {
[paramName + '.year']: value.getFullYear(),
[paramName + '.month']: value.getMonth() + 1,
[paramName + '.day']: value.getDate()
};
}
// [END apps_script_adsense_generate_report]