9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
110 lines
4.7 KiB
JavaScript
110 lines
4.7 KiB
JavaScript
/**
|
|
* Upwork personalized feed (Best Matches / Most Recent).
|
|
*
|
|
* Reads the logged-in user's recommended-jobs feed. Two tabs are
|
|
* supported: `best-matches` (default, Upwork's relevance-ranked feed)
|
|
* and `most-recent` (chronological). Both surface the full job list in
|
|
* `window.__NUXT__.state.feed{BestMatch,MostRecent}.{jobs, paging}`.
|
|
*
|
|
* Login is required — bare visitors get redirected through the
|
|
* onboarding flow and never see the feed state.
|
|
*/
|
|
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import {
|
|
CommandExecutionError,
|
|
EmptyResultError,
|
|
AuthRequiredError,
|
|
} from '@jackwener/opencli/errors';
|
|
import {
|
|
buildFeedUrl,
|
|
feedStateKey,
|
|
isPlainObject,
|
|
jobsToListRows,
|
|
LIST_COLUMNS,
|
|
requireBoundedInt,
|
|
requireFeedTab,
|
|
unwrapBrowserResult,
|
|
} from './utils.js';
|
|
|
|
cli({
|
|
site: 'upwork',
|
|
name: 'feed',
|
|
aliases: ['best-matches'],
|
|
access: 'read',
|
|
description: 'Upwork personalized jobs feed (best-matches | most-recent) — requires login',
|
|
domain: 'www.upwork.com',
|
|
strategy: Strategy.COOKIE,
|
|
browser: true,
|
|
navigateBefore: false,
|
|
args: [
|
|
{ name: 'tab', positional: true, required: false, default: 'best-matches', help: 'Feed tab: best-matches | most-recent' },
|
|
{ name: 'limit', type: 'int', default: 20, help: 'Max rows to return (1-50, capped at one page)' },
|
|
],
|
|
columns: LIST_COLUMNS,
|
|
func: async (page, kwargs) => {
|
|
const tab = requireFeedTab(kwargs.tab);
|
|
const limit = requireBoundedInt(kwargs.limit, 20, 1, 50, 'limit');
|
|
const stateKey = feedStateKey(tab);
|
|
const url = buildFeedUrl(tab);
|
|
|
|
await page.goto(url);
|
|
await page.wait(5);
|
|
|
|
let payload;
|
|
try {
|
|
payload = unwrapBrowserResult(await page.evaluate(`(async () => {
|
|
const key = ${JSON.stringify(stateKey)};
|
|
const haveState = () => !!(window.__NUXT__ && window.__NUXT__.state && window.__NUXT__.state[key]);
|
|
let ready = haveState();
|
|
for (let i = 0; i < 30; i++) {
|
|
if (ready) break;
|
|
await new Promise(r => setTimeout(r, 500));
|
|
ready = haveState();
|
|
}
|
|
const onLogin = /\\/(ab\\/account-security\\/login|nx\\/login)/.test(location.pathname);
|
|
const challenge = (document.title || '').toLowerCase().includes('just a moment') || !!document.querySelector('[id^="cf-"]');
|
|
const state = window.__NUXT__ && window.__NUXT__.state && window.__NUXT__.state[key];
|
|
return {
|
|
ready,
|
|
onLogin,
|
|
challenge,
|
|
jobsPresent: !!(state && Object.prototype.hasOwnProperty.call(state, 'jobs')),
|
|
jobs: state ? state.jobs : undefined,
|
|
paging: state && state.paging ? state.paging : null,
|
|
};
|
|
})()`));
|
|
}
|
|
catch (e) {
|
|
throw new CommandExecutionError(`Failed to read Upwork feed state: ${e?.message ?? e}`, 'The Nuxt state global was not reachable; try again after opening Upwork in the connected browser.');
|
|
}
|
|
|
|
if (payload?.onLogin) {
|
|
throw new AuthRequiredError('upwork.com', 'Upwork redirected to login. Open https://www.upwork.com in the connected browser and sign in, then retry.');
|
|
}
|
|
if (payload?.challenge) {
|
|
throw new CommandExecutionError('Upwork served a Cloudflare challenge page', 'Open https://www.upwork.com in the connected browser and clear the challenge, then retry.');
|
|
}
|
|
if (!payload?.ready) {
|
|
throw new CommandExecutionError(`Upwork feed state (window.__NUXT__.state.${stateKey}) was not present within 15s`, 'The page may not have finished hydrating, or the SSR state shape may have changed.');
|
|
}
|
|
if (!isPlainObject(payload)) {
|
|
throw new CommandExecutionError('Upwork feed returned an unexpected Browser Bridge payload shape');
|
|
}
|
|
if (!payload.jobsPresent || !Array.isArray(payload.jobs)) {
|
|
throw new CommandExecutionError(`Upwork feed state had an unexpected jobs shape; expected window.__NUXT__.state.${stateKey}.jobs to be an array.`);
|
|
}
|
|
|
|
const jobs = payload.jobs;
|
|
if (jobs.length === 0) {
|
|
throw new EmptyResultError(`upwork feed ${tab}`, `Upwork ${tab} feed is empty for the current account`);
|
|
}
|
|
|
|
const rows = jobsToListRows(jobs, { limit });
|
|
if (rows.length === 0) {
|
|
throw new CommandExecutionError('Upwork feed results did not include any job with a valid ciphertext id; cannot produce round-trippable detail rows.');
|
|
}
|
|
return rows;
|
|
},
|
|
});
|