File size: 12,276 Bytes
f0743f4 | 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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | import { useRef, useCallback } from 'react';
import { useRecoilState } from 'recoil';
import { useToastContext } from '@librechat/client';
import type { SPPickerConfig } from '~/components/SidePanel/Agents/config';
import { useLocalize, useAuthContext } from '~/hooks';
import { useGetStartupConfig } from '~/data-provider';
import useSharePointToken from './useSharePointToken';
import store from '~/store';
interface UseSharePointPickerProps {
containerNode: HTMLDivElement | null;
onFilesSelected?: (files: any[]) => void;
onClose?: () => void;
disabled?: boolean;
maxSelectionCount?: number;
}
interface UseSharePointPickerReturn {
openSharePointPicker: () => void;
closeSharePointPicker: () => void;
error: string | null;
cleanup: () => void;
isTokenLoading: boolean;
}
export default function useSharePointPicker({
containerNode,
onFilesSelected,
onClose,
disabled = false,
maxSelectionCount = 10,
}: UseSharePointPickerProps): UseSharePointPickerReturn {
const [langcode] = useRecoilState(store.lang);
const { user } = useAuthContext();
const { showToast } = useToastContext();
const localize = useLocalize();
const iframeRef = useRef<HTMLIFrameElement | null>(null);
const portRef = useRef<MessagePort | null>(null);
const channelIdRef = useRef<string>('');
const { data: startupConfig } = useGetStartupConfig();
const sharePointBaseUrl = startupConfig?.sharePointBaseUrl;
const isEntraIdUser = user?.provider === 'openid';
const {
token,
isLoading: isTokenLoading,
error: tokenError,
} = useSharePointToken({
enabled: isEntraIdUser && !disabled && !!sharePointBaseUrl,
purpose: 'Pick',
});
const generateChannelId = useCallback(() => {
return `sharepoint-picker-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
}, []);
const portMessageHandler = useCallback(
async (message: MessageEvent) => {
const port = portRef.current;
if (!port) {
console.error('No port available for communication');
return;
}
try {
switch (message.data.type) {
case 'notification':
console.log('SharePoint picker notification:', message.data);
break;
case 'command': {
// Always acknowledge the command first
port.postMessage({
type: 'acknowledge',
id: message.data.id,
});
const command = message.data.data;
console.log('SharePoint picker command:', command);
switch (command.command) {
case 'authenticate':
console.log('Authentication requested, providing token');
console.log('Command details:', command); // Add this line
console.log('Token available:', !!token?.access_token); // Add this line
if (token?.access_token) {
port.postMessage({
type: 'result',
id: message.data.id,
data: {
result: 'token',
token: token.access_token,
},
});
} else {
console.error('No token available for authentication');
port.postMessage({
type: 'result',
id: message.data.id,
data: {
result: 'error',
error: {
code: 'noToken',
message: 'No authentication token available',
},
},
});
}
break;
case 'close':
console.log('Close command received');
port.postMessage({
type: 'result',
id: message.data.id,
data: {
result: 'success',
},
});
onClose?.();
break;
case 'pick': {
console.log('Files picked from SharePoint:', command);
const items = command.items || command.files || [];
console.log('Extracted items:', items);
if (items && items.length > 0) {
const selectedFiles = items.map((item: any) => ({
id: item.id || item.shareId || item.driveItem?.id,
name: item.name || item.driveItem?.name,
size: item.size || item.driveItem?.size,
webUrl: item.webUrl || item.driveItem?.webUrl,
downloadUrl:
item.downloadUrl || item.driveItem?.['@microsoft.graph.downloadUrl'],
driveId:
item.driveId ||
item.parentReference?.driveId ||
item.driveItem?.parentReference?.driveId,
itemId: item.id || item.driveItem?.id,
sharePointItem: item,
}));
console.log('Processed SharePoint files:', selectedFiles);
if (onFilesSelected) {
onFilesSelected(selectedFiles);
}
showToast({
message: `Selected ${selectedFiles.length} file(s) from SharePoint`,
status: 'success',
});
}
port.postMessage({
type: 'result',
id: message.data.id,
data: {
result: 'success',
},
});
break;
}
default:
console.warn(`Unsupported command: ${command.command}`);
port.postMessage({
type: 'result',
id: message.data.id,
data: {
result: 'error',
error: {
code: 'unsupportedCommand',
message: command.command,
},
},
});
break;
}
break;
}
default:
console.log('Unknown message type:', message.data.type);
break;
}
} catch (error) {
console.error('Error processing port message:', error);
}
},
[token, onFilesSelected, showToast, onClose],
);
// Initialization message handler - establishes MessagePort communication
const initMessageHandler = useCallback(
(event: MessageEvent) => {
console.log('=== SharePoint picker init message received ===');
console.log('Event source:', event.source);
console.log('Event data:', event.data);
console.log('Expected channelId:', channelIdRef.current);
// Check if this message is from our iframe
if (event.source && event.source === iframeRef.current?.contentWindow) {
const message = event.data;
if (message.type === 'initialize' && message.channelId === channelIdRef.current) {
console.log('Establishing MessagePort communication');
// Get the MessagePort from the event
portRef.current = event.ports[0];
if (portRef.current) {
// Set up the port message listener
portRef.current.addEventListener('message', portMessageHandler);
portRef.current.start();
// Send activate message to start the picker
portRef.current.postMessage({
type: 'activate',
});
console.log('MessagePort established and activated');
} else {
console.error('No MessagePort found in initialize event');
}
}
}
},
[portMessageHandler],
);
const openSharePointPicker = async () => {
if (!token) {
showToast({
message: 'Unable to access SharePoint. Please ensure you are logged in with Microsoft.',
status: 'error',
});
return;
}
if (!containerNode) {
console.error('No container ref provided for SharePoint picker');
return;
}
try {
const channelId = generateChannelId();
channelIdRef.current = channelId;
console.log('=== SharePoint File Picker v8 (MessagePort) ===');
console.log('Token available:', {
hasToken: !!token.access_token,
tokenType: token.token_type,
expiresIn: token.expires_in,
scopes: token.scope,
});
console.log('Channel ID:', channelId);
const pickerOptions: SPPickerConfig = {
sdk: '8.0',
entry: {
sharePoint: {},
},
messaging: {
origin: window.location.origin,
channelId: channelId,
},
authentication: {
enabled: false, // Host app handles authentication
},
typesAndSources: {
mode: 'files',
pivots: {
oneDrive: true,
recent: true,
shared: true,
sharedLibraries: true,
myOrganization: true,
site: true,
},
},
selection: {
mode: 'multiple',
maximumCount: maxSelectionCount,
},
title: localize('com_files_sharepoint_picker_title'),
commands: {
upload: {
enabled: false,
},
createFolder: {
enabled: false,
},
},
search: { enabled: true },
};
const iframe = document.createElement('iframe');
iframe.style.width = '100%';
iframe.style.height = '100%';
iframe.style.background = '#F5F5F5';
iframe.style.border = 'none';
iframe.title = 'SharePoint File Picker';
iframe.setAttribute(
'sandbox',
'allow-same-origin allow-scripts allow-forms allow-popups allow-popups-to-escape-sandbox',
);
iframeRef.current = iframe;
containerNode.innerHTML = '';
containerNode.appendChild(iframe);
activeEventListenerRef.current = initMessageHandler;
window.addEventListener('message', initMessageHandler);
iframe.src = 'about:blank';
iframe.onload = () => {
const win = iframe.contentWindow;
if (!win) return;
const queryString = new URLSearchParams({
filePicker: JSON.stringify(pickerOptions),
locale: langcode || 'en-US',
});
const url = sharePointBaseUrl + `/_layouts/15/FilePicker.aspx?${queryString}`;
const form = win.document.createElement('form');
form.setAttribute('action', url);
form.setAttribute('method', 'POST');
const tokenInput = win.document.createElement('input');
tokenInput.setAttribute('type', 'hidden');
tokenInput.setAttribute('name', 'access_token');
tokenInput.setAttribute('value', token.access_token);
form.appendChild(tokenInput);
win.document.body.appendChild(form);
form.submit();
};
} catch (error) {
console.error('SharePoint file picker error:', error);
showToast({
message: 'Failed to open SharePoint file picker.',
status: 'error',
});
}
};
const activeEventListenerRef = useRef<((event: MessageEvent) => void) | null>(null);
const cleanup = useCallback(() => {
if (activeEventListenerRef.current) {
window.removeEventListener('message', activeEventListenerRef.current);
activeEventListenerRef.current = null;
}
if (portRef.current) {
portRef.current.close();
portRef.current = null;
}
if (containerNode) {
containerNode.innerHTML = '';
}
channelIdRef.current = '';
}, [containerNode]);
const handleDialogClose = useCallback(() => {
cleanup();
}, [cleanup]);
const isAvailable = startupConfig?.sharePointFilePickerEnabled && isEntraIdUser && !tokenError;
return {
openSharePointPicker: isAvailable ? openSharePointPicker : () => {},
closeSharePointPicker: handleDialogClose,
error: tokenError ? 'Failed to authenticate with SharePoint' : null,
cleanup,
isTokenLoading,
};
}
|