Badges pour la publication

Since there deliberately isn’t the concept of achievements for posting, I’ve managed to implement it on ours, since we had it on our old forums and some were complain about the lack thereof.

Generic version:

SELECT user_id, 0 post_id, current_timestamp granted_at 
FROM badge_posts  
WHERE (:backfill OR user_id IN (:user_ids) OR 0 NOT IN (:post_ids) )
GROUP BY user_id 
HAVING count(*) > 1000

Change the 1000 for whatever post limit you’re after. I’ve themed ours (due to the nature of our board) on powers of 2.

Note that this will (should) only count posts that are public (not in categories that are restricted or private messages) or otherwise unrestricted (checkbox on edit category ignoring badges)

Additionally, for our board I’ve had to exclude certain topics due to the nature of my charges:

SELECT user_id, 0 post_id, current_timestamp granted_at 
FROM badge_posts  
WHERE topic_id NOT IN (
   [elided]
) AND topic_id NOT IN (
   [elided]
) AND  (:backfill OR user_id IN (:user_ids) OR 0 NOT IN (:post_ids) )
GROUP BY user_id 
HAVING count(*) >= 2048

Edit: There was a problem with my queries - post_id is apparently required when this is triggered on post-related triggers.
See
https://meta.discourse.org/t/badges-sql-problem/19295

And

Edit 2: Added :backfill

I think I have the correct trigger condition here, actually:

    :backfill OR
    user_id IN (
        SELECT trigger_post.user_id FROM posts trigger_post WHERE trigger_post.id IN (:post_ids)
    )

You get the user id list from the list of triggered posts and filter on that.

Thanks. This is very helpful. I am also thinking about encouraging users to initiate discussions. I am messing around your query to count original posts with p.post_number = 1

Je viens de trouver ce petit trésor ici. Je souhaitais créer mes propres requêtes de badges personnalisés pour le nombre de publications dans des catégories spécifiques. Comment modifier cela pour inclure également la condition d’identifiants de catégories spécifiques, afin que seules les publications d’une catégorie donnée soient comptées ?

Il devrait s’agir d’une modification de la première requête ici, où les badges sont attribués en fonction de la création de sujets dans une catégorie spécifique. La différence est que nous attribuons les badges en fonction du nombre de publications dans une catégorie spécifique.

Rencontre cette erreur lors de l’exécution de l’aperçu de la requête de badge :

Il y a eu une erreur avec la requête. Une idée pour la corriger ?

Violation de contrat :
La requête se déclenche sur des posts, mais fait référence au tableau ':user_ids'