UNPKG

zan-proxy

Version:
11 lines (10 loc) 231 B
export const user = profileService => { return async (ctx, next) => { if (ctx.ignore) { await next(); return; } ctx.userID = profileService.getClientIpMappedUserId(ctx.clientIP); await next(); }; };