Spaces:
Paused
Paused
File size: 5,136 Bytes
34367da | 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 | /**
* Minimal Showpad Integration Test
* Tests Showpad API connection and asset fetching
*
* REQUIREMENTS:
* - SHOWPAD_CLIENT_ID and SHOWPAD_CLIENT_SECRET must be set
* - Create OAuth client at: https://tdcerhverv.showpad.biz Admin > API > OAuth Clients
*/
import { config } from 'dotenv';
import { resolve } from 'path';
// Load environment
const __dirname = new URL('.', import.meta.url).pathname.replace(/^\/([A-Z]:)/, '$1');
config({ path: resolve(__dirname, '../.env') });
console.log('Testing Showpad Integration...\n');
console.log('Config:');
console.log(' Subdomain:', process.env.SHOWPAD_SUBDOMAIN || '(missing)');
console.log(' Username:', process.env.SHOWPAD_USERNAME || '(missing)');
console.log(' Password:', process.env.SHOWPAD_PASSWORD ? '***' : '(missing)');
console.log(' Client ID:', process.env.SHOWPAD_CLIENT_ID || 'β MISSING - CREATE AT SHOWPAD ADMIN');
console.log(' Client Secret:', process.env.SHOWPAD_CLIENT_SECRET ? '***' : 'β MISSING - CREATE AT SHOWPAD ADMIN');
console.log('');
interface ShowpadAuthResponse {
access_token: string;
token_type: string;
expires_in: number;
}
async function testShowpadAuth(): Promise<string | null> {
const baseUrl = process.env.SHOWPAD_BASE_URL || 'https://tdcerhverv.showpad.biz';
const username = process.env.SHOWPAD_USERNAME;
const password = process.env.SHOWPAD_PASSWORD;
const clientId = process.env.SHOWPAD_CLIENT_ID;
const clientSecret = process.env.SHOWPAD_CLIENT_SECRET;
if (!username || !password) {
console.error('β Missing SHOWPAD_USERNAME or SHOWPAD_PASSWORD');
return null;
}
if (!clientId || !clientSecret) {
console.error('β Missing SHOWPAD_CLIENT_ID or SHOWPAD_CLIENT_SECRET');
console.error('');
console.error('π To get OAuth credentials:');
console.error(' 1. Go to https://tdcerhverv.showpad.biz');
console.error(' 2. Navigate to Admin > Settings > API');
console.error(' 3. Click "Manage OAuth Clients"');
console.error(' 4. Create a new OAuth client');
console.error(' 5. Copy the Client ID and Secret to your .env file');
return null;
}
console.log('Attempting Showpad authentication...');
const tokenUrl = `${baseUrl}/api/v3/oauth2/token`;
const params = new URLSearchParams({
grant_type: 'password',
username,
password,
client_id: clientId,
client_secret: clientSecret
});
try {
const response = await fetch(tokenUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: params.toString()
});
console.log(`Auth Response: ${response.status} ${response.statusText}`);
if (!response.ok) {
const error = await response.text();
console.error('β Auth failed:', error);
return null;
}
const data: ShowpadAuthResponse = await response.json();
console.log('β
Authentication successful!');
console.log(` Token type: ${data.token_type}`);
console.log(` Expires in: ${data.expires_in}s`);
return data.access_token;
} catch (error) {
console.error('β Auth error:', error);
return null;
}
}
async function testFetchAssets(token: string): Promise<void> {
const subdomain = process.env.SHOWPAD_SUBDOMAIN || 'tdcerhverv';
const apiUrl = `https://${subdomain}.api.showpad.com/v4/assets?limit=10`;
console.log('\nFetching assets...');
console.log(`API URL: ${apiUrl}`);
try {
const response = await fetch(apiUrl, {
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',
'Accept': 'application/json'
}
});
console.log(`Assets Response: ${response.status} ${response.statusText}`);
if (!response.ok) {
const error = await response.text();
console.error('β Fetch failed:', error);
return;
}
const data = await response.json();
const items = data.items || [];
console.log(`β
Fetched ${items.length} assets`);
// Count images
const imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml'];
const imageExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg'];
let imageCount = 0;
for (const asset of items) {
const isImage =
(asset.mimeType && imageTypes.includes(asset.mimeType)) ||
(asset.name && imageExtensions.some((ext: string) => asset.name.toLowerCase().endsWith(ext))) ||
asset.resourcetype === 'image';
if (isImage) imageCount++;
console.log(` - ${asset.name} (${asset.mimeType || asset.resourcetype || 'unknown'})`);
}
console.log(`\nπ Summary: ${imageCount} images out of ${items.length} assets`);
} catch (error) {
console.error('β Fetch error:', error);
}
}
async function main() {
const token = await testShowpadAuth();
if (token) {
await testFetchAssets(token);
}
console.log('\nTest complete.');
}
main().catch(console.error);
|