mirror of
https://github.com/whyour/qinglong.git
synced 2025-11-23 00:49:19 +08:00
* Initial plan * Implement multi-device login support - allow multiple concurrent sessions Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Address code review feedback - extract constants and utility functions Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Add validation and logging improvements based on code review Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> * Revert unnecessary file changes - keep only multi-device login feature files Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import sockJs from 'sockjs';
|
|
import { Server } from 'http';
|
|
import { Container } from 'typedi';
|
|
import SockService from '../services/sock';
|
|
import { getPlatform } from '../config/util';
|
|
import { shareStore } from '../shared/store';
|
|
import { isValidToken } from '../shared/auth';
|
|
|
|
export default async ({ server }: { server: Server }) => {
|
|
const echo = sockJs.createServer({ prefix: '/api/ws', log: () => {} });
|
|
const sockService = Container.get(SockService);
|
|
|
|
echo.on('connection', async (conn) => {
|
|
if (!conn.headers || !conn.url || !conn.pathname) {
|
|
conn.close('404');
|
|
}
|
|
|
|
const authInfo = await shareStore.getAuthInfo();
|
|
const platform = getPlatform(conn.headers['user-agent'] || '') || 'desktop';
|
|
const headerToken = conn.url.replace(`${conn.pathname}?token=`, '');
|
|
|
|
if (isValidToken(authInfo, headerToken, platform)) {
|
|
sockService.addClient(conn);
|
|
|
|
conn.on('data', (message) => {
|
|
conn.write(message);
|
|
});
|
|
|
|
conn.on('close', function () {
|
|
sockService.removeClient(conn);
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
conn.close('404');
|
|
});
|
|
|
|
echo.installHandlers(server);
|
|
};
|