-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
252 lines (222 loc) · 7.85 KB
/
index.js
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
const axios = require('axios');
const puppeteer = require('puppeteer');
// Configuration constants
const CONFIG = {
API_BASE_URL: 'https://api.agentstation.ai/v1',
VIEWPORT: { width: 1280, height: 720 },
TIMEOUTS: {
PAGE_LOAD: 120000,
NAVIGATION: 60000,
TYPE_DELAY: 20,
PAGE_PAUSE: 2000,
LONG_PAUSE: 5000,
WORKSTATION_SETUP: 10000
}
};
class WorkstationManager {
constructor(apiKey) {
this.apiKey = apiKey;
this.workstation = null;
this.browser = null;
}
async createWorkstation() {
console.log('🚀 Creating new workstation...');
const response = await axios.post(
`${CONFIG.API_BASE_URL}/workstations`,
{ name: 'puppeteer-workstation', type: 'default' },
{ headers: this.getHeaders() }
);
this.workstation = response.data;
console.log('✅ Workstation created:', this.workstation);
console.log('🔗 You can go to https://app.agentstation.ai/workstations to see the workstation');
}
async connectBrowser() {
console.log('🔌 Getting browser WebSocket URL...');
try {
const response = await axios.post(
`${CONFIG.API_BASE_URL}/workstations/${this.workstation.id}/browser/cdp`,
{},
{ headers: this.getHeaders() }
);
this.browser = await puppeteer.connect({
browserURL: response.data.url,
defaultViewport: CONFIG.VIEWPORT
});
} catch (error) {
console.error('⚠️ Failed to connect to browser:', error.message);
throw error;
}
}
async cleanup() {
const cleanupTimeout = setTimeout(() => {
console.warn('⚠️ Cleanup operation timed out');
}, CONFIG.TIMEOUTS.LONG_PAUSE);
try {
if (this.browser && this.browser.connected) {
try {
console.log('🔒 Closing browser...');
await this.browser.close();
} catch (err) {
console.error('⚠️ Error closing browser:', err.message);
}
}
if (this.workstation) {
try {
console.log('🧹 Cleaning up workstation...');
await axios.delete(
`${CONFIG.API_BASE_URL}/workstations/${this.workstation.id}`,
{ headers: this.getHeaders() }
);
console.log('✨ All done! Goodbye!');
} catch (err) {
console.error('⚠️ Error cleaning up workstation:', err.message);
}
}
} finally {
clearTimeout(cleanupTimeout);
}
}
getHeaders() {
return {
'Content-Type': 'application/json',
'Authorization': `Bearer ${this.apiKey}`
};
}
}
class DemoRunner {
constructor(page = null) {
if (!page) {
throw new Error('Page instance is required');
}
this.page = page;
}
async performGoogleSearch() {
console.log('🌟 Starting Google search demonstration...');
await this.page.goto('https://google.com');
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
console.log('✅ Google homepage loaded successfully');
console.log('🔍 Preparing to search for "agentstation.ai"...');
await this.page.waitForSelector('textarea[name="q"]');
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
await this.page.type('textarea[name="q"]', 'agentstation.ai', { delay: CONFIG.TIMEOUTS.TYPE_DELAY });
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
console.log('🚀 Submitting search query...');
await this.page.keyboard.press('Enter');
}
async clickSearchResult() {
console.log('⏳ Waiting for search results to load...');
try {
await this.page.waitForSelector('h3.LC20lb');
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
console.log('✨ Clicking first search result (AgentStation website)...');
await Promise.all([
this.page.waitForNavigation({
timeout: CONFIG.TIMEOUTS.NAVIGATION,
waitUntil: 'domcontentloaded',
}),
this.page.click('h3.LC20lb')
]);
} catch (error) {
console.error('⚠️ Error finding or clicking search result:', error.message);
throw error; // Re-throw to handle in main
}
}
async navigateToLaunchPage() {
console.log('⌛ Waiting for AgentStation page to fully load...');
await this.page.waitForTimeout(CONFIG.TIMEOUTS.LONG_PAUSE);
console.log('✅ AgentStation page loaded successfully');
console.log('🎯 Preparing to navigate to AgentStation launch page...');
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
try {
await this.page.goto('https://agentstation.ai/launch', {
timeout: CONFIG.TIMEOUTS.PAGE_LOAD,
waitUntil: 'domcontentloaded'
});
await this.page.waitForTimeout(CONFIG.TIMEOUTS.PAGE_PAUSE);
console.log('🎉 Successfully arrived at AgentStation launch page');
} catch (error) {
console.log('⚠️ Navigation to launch page encountered an issue:', error.message);
console.log('🔄 Continuing with the demonstration...');
}
}
}
async function main(existingWorkstation = null, existingPage = null) {
const apiKey = process.env.AGENTSTATION_API_KEY;
if (!apiKey) {
throw new Error('🔑 Please set your AGENTSTATION_API_KEY environment variable.');
}
let workstationManager = existingWorkstation || new WorkstationManager(apiKey);
let page = existingPage;
try {
if (!existingPage) {
console.log('🚀 Starting new demo session...');
await workstationManager.createWorkstation();
console.log('🕒 Waiting for 10 seconds...');
await new Promise(resolve => setTimeout(resolve, 10000));
await workstationManager.connectBrowser();
console.log('📱 Opening new browser page...');
page = await workstationManager.browser.newPage();
} else {
console.log('♻️ Reusing existing browser session...');
}
const demo = new DemoRunner(page);
await demo.performGoogleSearch();
await demo.clickSearchResult();
await demo.navigateToLaunchPage();
console.log('✨ Demo run completed successfully!');
return { page, workstationManager };
} catch (error) {
console.error('❌ An error occurred:', error.message);
// If we failed during setup, clean up any partial resources
if (!existingWorkstation) {
console.log('🧹 Cleaning up partial resources...');
await workstationManager?.cleanup();
}
throw error;
}
}
async function runDemo() {
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout
});
let workstationManager = null;
let currentPage = null;
try {
while (true) {
try {
const result = await main(workstationManager, currentPage);
currentPage = result.page;
workstationManager = result.workstationManager;
} catch (error) {
console.error('❌ Demo run failed:', error.message);
if (!workstationManager) {
console.error('💥 Fatal error occurred!');
throw error;
}
}
console.log('\n🤔 Would you like to run another demo?');
const answer = await new Promise(resolve => {
readline.question('Please enter (y/n): ', resolve);
});
if (answer.toLowerCase() !== 'y') {
console.log('👋 Thanks for trying the demo!');
if (workstationManager && workstationManager.browser) {
console.log('🔒 Closing browser connection...');
await workstationManager.browser.disconnect();
console.log('⏳ Waiting 10 seconds before cleanup...');
await new Promise(resolve => setTimeout(resolve, 10000));
}
break;
}
console.log('\n🔄 Starting another demo run...\n');
}
} finally {
readline.close();
if (workstationManager) {
console.log('🧹 Cleaning up resources...');
await workstationManager?.cleanup();
}
}
}
runDemo().catch(console.error);