Add a way to get the uploaded media from a comment

Open
#234 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
48/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
typescript
Domain
api

Research direction

Start by tracing the comment create trigger and its payload fields, especially body, hasMedia, elementTypes, and mediaUrls. Confirm how the media identifier in the body can be represented as a usable link, then verify that media comments expose the expected metadata or URL when the feature is complete.

Written by the indexing model from the issue text.

Description

If a subreddit enables media in comments and you upload an image, you get this on the comment create trigger:

{
  id: 't1_nuhy413',
  parentId: 't1_nuhxzxy',
  body: 'test\n\n![img](g1td0ezv7r7g1)',
  author: 't2_hjp31',
  numReports: 0,
  collapsedBecauseCrowdControl: false,
  spam: false,
  deleted: false,
  createdAt: 1765972827314,
  upvotes: 1,
  downvotes: 0,
  languageCode: 'und',
  lastModifiedAt: -1,
  gilded: false,
  score: 1,
  permalink: '/r/sky_elder_dev/comments/1poehvw/comment/nuhy413',
  hasMedia: false,
  postId: 't3_1poehvw',
  subredditId: 't5_g3e97a',
  elementTypes: [ 'img', 'text' ],
  mediaUrls: []
}

I was expecting hasMedia to be true and mediaUrls to not be empty. The body contains the media with presumably an id of g1td0ezv7r7g1. This is not enough information to work with–we have to guess the extension. In this case, it's PNG, so that'd be https://i.redd.it/g1td0ezv7r7g1.png.

Please provide a drink link to possible media in comments or alike! Or if there is a way to do this, please let me know!

Dominant language
TypeScript
Stars
210
Forks
88
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from reddit/devvit

All issues in reddit/devvit

Similar issues

More TypeScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.