attachments method

Future<List<DtoChatItem>> attachments(
  1. ChatId chatId, {
  2. int? before,
  3. int? after,
  4. PreciseDateTime? around,
})

Returns the DtoChatItems containing any Attachments, in a historical view order of the provided chatId.

Implementation

Future<List<DtoChatItem>> attachments(
  ChatId chatId, {
  int? before,
  int? after,
  PreciseDateTime? around,
}) async {
  final result = await safe(
    (db) async {
      if (around != null) {
        final stmt = db.attachmentsAround(
          chatId.val,
          around,
          (before ?? 50).toDouble(),
          after ?? 50,
        );

        return (await stmt.get())
            .map(
              (r) => ChatItemRow(
                id: r.id,
                chatId: r.chatId,
                authorId: r.authorId,
                at: r.at,
                status: r.status,
                data: r.data,
                cursor: r.cursor,
                ver: r.ver,
              ),
            )
            .map(_ChatItemDb.fromDb)
            .toList();
      }

      final stmt = db.select(db.chatItemViews).join([
        innerJoin(
          db.chatItems,
          db.chatItems.id.equalsExp(db.chatItemViews.chatItemId),
        ),
      ]);

      stmt.where(
        db.chatItemViews.chatId.equals(chatId.val) &
            db.chatItems.data.like('%"attachments":[{'),
      );
      stmt.orderBy([OrderingTerm.desc(db.chatItems.at)]);

      if (after != null || before != null) {
        stmt.limit((after ?? 0) + (before ?? 0));
      }

      return (await stmt.get())
          .map((rows) => rows.readTable(db.chatItems))
          .map(_ChatItemDb.fromDb)
          .toList();
    },
    tag: 'chat_item.attachments($chatId, $before, $after, $around)',
    exclusive: false,
  );

  return result ?? [];
}