max / makenotwork
| 1 | use ; |
| 2 | |
| 3 | /// Insert a link preview for a post. Ignores duplicates. |
| 4 | |
| 5 | pub async |
| 6 | pool: &PgPool, |
| 7 | post_id: Uuid, |
| 8 | url: &str, |
| 9 | title: , |
| 10 | description: , |
| 11 | |
| 12 | query! |
| 13 | "INSERT INTO link_previews (post_id, url, title, description) |
| 14 | VALUES ($1, $2, $3, $4) |
| 15 | ON CONFLICT (post_id, url) DO NOTHING", |
| 16 | post_id, |
| 17 | url, |
| 18 | title, |
| 19 | description, |
| 20 | |
| 21 | .execute |
| 22 | .await?; |
| 23 | Ok |
| 24 | |
| 25 |