/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fluxer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Fluxer. If not, see . */ import * as ModalActionCreators from '@app/actions/ModalActionCreators'; import {modal} from '@app/actions/ModalActionCreators'; import {PinFailedModal, type PinFailureReason} from '@app/components/alerts/PinFailedModal'; import {Endpoints} from '@app/Endpoints'; import http from '@app/lib/HttpClient'; import type {HttpError} from '@app/lib/HttpError'; import {Logger} from '@app/lib/Logger'; import ChannelPinsStore from '@app/stores/ChannelPinsStore'; import ChannelStore from '@app/stores/ChannelStore'; import GuildNSFWAgreeStore from '@app/stores/GuildNSFWAgreeStore'; import {APIErrorCodes} from '@fluxer/constants/src/ApiErrorCodes'; import type {Message} from '@fluxer/schema/src/domains/message/MessageResponseSchemas'; interface ApiErrorBody { code?: string; message?: string; } const getApiErrorCode = (error: HttpError): string | undefined => { const body = typeof error?.body === 'object' && error.body !== null ? (error.body as ApiErrorBody) : undefined; return body?.code; }; const logger = new Logger('Pins'); const PIN_PAGE_SIZE = 25; const shouldBlockPinsFetch = (channelId: string): boolean => { const channel = ChannelStore.getChannel(channelId); if (!channel || channel.isPrivate()) { return false; } return GuildNSFWAgreeStore.shouldShowGate({channelId: channel.id, guildId: channel.guildId ?? null}); }; interface ChannelPinResponse { message: Message; pinned_at: string; } interface ChannelPinsPayload { items: Array; has_more: boolean; } export async function fetch(channelId: string) { if (shouldBlockPinsFetch(channelId)) { ChannelPinsStore.handleChannelPinsFetchSuccess(channelId, [], false); return []; } ChannelPinsStore.handleFetchPending(channelId); try { const response = await http.get({ url: Endpoints.CHANNEL_PINS(channelId), query: {limit: PIN_PAGE_SIZE}, }); const body = response.body ?? {items: [], has_more: false}; ChannelPinsStore.handleChannelPinsFetchSuccess(channelId, body.items, body.has_more); return body.items.map((pin) => pin.message); } catch (error) { logger.error(`Failed to fetch pins for channel ${channelId}:`, error); ChannelPinsStore.handleChannelPinsFetchError(channelId); return []; } } export async function loadMore(channelId: string): Promise> { if (shouldBlockPinsFetch(channelId)) { ChannelPinsStore.handleChannelPinsFetchSuccess(channelId, [], false); return []; } if (!ChannelPinsStore.getHasMore(channelId) || ChannelPinsStore.getIsLoading(channelId)) { return []; } const before = ChannelPinsStore.getOldestPinnedAt(channelId); if (!before) { return []; } ChannelPinsStore.handleFetchPending(channelId); try { logger.debug(`Loading more pins for channel ${channelId} before ${before}`); const response = await http.get({ url: Endpoints.CHANNEL_PINS(channelId), query: { limit: PIN_PAGE_SIZE, before, }, }); const body = response.body ?? {items: [], has_more: false}; ChannelPinsStore.handleChannelPinsFetchSuccess(channelId, body.items, body.has_more); return body.items.map((pin) => pin.message); } catch (error) { logger.error(`Failed to load more pins for channel ${channelId}:`, error); ChannelPinsStore.handleChannelPinsFetchError(channelId); return []; } } const getFailureReason = (error: HttpError): PinFailureReason => { const errorCode = getApiErrorCode(error); if (errorCode === APIErrorCodes.CANNOT_SEND_MESSAGES_TO_USER) { return 'dm_restricted'; } return 'generic'; }; export async function pin(channelId: string, messageId: string): Promise { try { await http.put({url: Endpoints.CHANNEL_PIN(channelId, messageId)}); logger.debug(`Pinned message ${messageId} in channel ${channelId}`); } catch (error) { logger.error(`Failed to pin message ${messageId} in channel ${channelId}:`, error); const reason = getFailureReason(error as HttpError); ModalActionCreators.push(modal(() => )); } } export async function unpin(channelId: string, messageId: string): Promise { try { await http.delete({url: Endpoints.CHANNEL_PIN(channelId, messageId)}); logger.debug(`Unpinned message ${messageId} from channel ${channelId}`); } catch (error) { logger.error(`Failed to unpin message ${messageId} from channel ${channelId}:`, error); const reason = getFailureReason(error as HttpError); ModalActionCreators.push(modal(() => )); } }