| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| export const config = { runtime: 'edge' }; |
|
|
| |
| import { getCorsHeaders } from '../../_cors.js'; |
| import { validateBearerToken } from '../../../server/auth-session'; |
| import { checkTierProEntitlement } from '../../../server/_shared/pro-entitlement'; |
|
|
| const SLACK_CLIENT_ID = process.env.SLACK_CLIENT_ID ?? ''; |
| const SLACK_REDIRECT_URI = process.env.SLACK_REDIRECT_URI ?? ''; |
| const UPSTASH_URL = process.env.UPSTASH_REDIS_REST_URL ?? ''; |
| const UPSTASH_TOKEN = process.env.UPSTASH_REDIS_REST_TOKEN ?? ''; |
|
|
| export default async function handler(req: Request): Promise<Response> { |
| const corsHeaders = getCorsHeaders(req) as Record<string, string>; |
|
|
| if (req.method === 'OPTIONS') { |
| return new Response(null, { |
| status: 204, |
| headers: { ...corsHeaders, 'Access-Control-Allow-Methods': 'POST, OPTIONS', 'Access-Control-Allow-Headers': 'Content-Type, Authorization' }, |
| }); |
| } |
|
|
| if (req.method !== 'POST') { |
| return new Response(JSON.stringify({ error: 'Method Not Allowed' }), { status: 405, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
| } |
|
|
| if (!SLACK_CLIENT_ID || !SLACK_REDIRECT_URI || !UPSTASH_URL) { |
| return new Response(JSON.stringify({ error: 'Slack OAuth not configured' }), { status: 503, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
| } |
|
|
| const authHeader = req.headers.get('Authorization') ?? ''; |
| const token = authHeader.startsWith('Bearer ') ? authHeader.slice(7) : ''; |
| if (!token) return new Response(JSON.stringify({ error: 'Unauthorized' }), { status: 401, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
|
|
| const session = await validateBearerToken(token); |
| if (!session.valid || !session.userId) { |
| return new Response(JSON.stringify({ error: 'Unauthorized' }), { status: 401, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
| } |
|
|
| const proAccess = await checkTierProEntitlement(session.userId, corsHeaders); |
| if (!proAccess.allowed) { |
| |
| |
| |
| |
| |
| |
| const { billingDenial } = proAccess; |
| if (billingDenial) return billingDenial; |
| return new Response(JSON.stringify({ error: 'pro_required', message: 'Slack notifications are available on the Pro plan.', upgradeUrl: 'https://worldmonitor.app/pro' }), { status: 403, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
| } |
|
|
| |
| const stateBytes = crypto.getRandomValues(new Uint8Array(20)); |
| const state = btoa(String.fromCharCode(...stateBytes)) |
| .replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, ''); |
|
|
| |
| const pipelineRes = await fetch(`${UPSTASH_URL}/pipeline`, { |
| method: 'POST', |
| headers: { Authorization: `Bearer ${UPSTASH_TOKEN}`, 'Content-Type': 'application/json' }, |
| body: JSON.stringify([['SET', `wm:slack:oauth:${state}`, session.userId, 'EX', '600']]), |
| signal: AbortSignal.timeout(5000), |
| }).catch(() => null); |
|
|
| if (!pipelineRes?.ok) { |
| return new Response(JSON.stringify({ error: 'Failed to create OAuth state' }), { status: 503, headers: { 'Content-Type': 'application/json', ...corsHeaders } }); |
| } |
|
|
| const oauthUrl = new URL('https://slack.com/oauth/v2/authorize'); |
| oauthUrl.searchParams.set('client_id', SLACK_CLIENT_ID); |
| oauthUrl.searchParams.set('scope', 'incoming-webhook'); |
| oauthUrl.searchParams.set('redirect_uri', SLACK_REDIRECT_URI); |
| oauthUrl.searchParams.set('state', state); |
|
|
| return new Response(JSON.stringify({ oauthUrl: oauthUrl.toString() }), { |
| status: 200, |
| headers: { 'Content-Type': 'application/json', ...corsHeaders }, |
| }); |
| } |
|
|