mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-13 23:48:19 -05:00
109 lines
3.9 KiB
Plaintext
109 lines
3.9 KiB
Plaintext
{
|
|
"polling": [
|
|
"unmoderated"
|
|
],
|
|
"runs": [
|
|
{
|
|
"checks": [
|
|
{
|
|
//
|
|
// Stop users who make link submissions with a self-promotional agenda (with reddit's suggested 10% rule)
|
|
// https://www.reddit.com/wiki/selfpromotion#wiki_guidelines_for_self-promotion_on_reddit
|
|
//
|
|
// Remove a SUBMISSION if the link comprises more than or equal to 10% of users history (100 activities or 6 months) OR
|
|
//
|
|
// if link comprises 10% of submission history (100 activities or 6 months)
|
|
// AND less than 50% of their activity is comments OR more than 40% of those comments are as OP (in the own submissions)
|
|
//
|
|
"name": "Self-promo all AND low engagement",
|
|
"description": "Self-promo is >10% for all or just sub and low comment engagement",
|
|
"kind": "submission",
|
|
"condition": "OR",
|
|
"rules": [
|
|
{
|
|
"name": "attr",
|
|
"kind": "attribution",
|
|
"criteria": [
|
|
{
|
|
"threshold": ">= 10%",
|
|
"window": {
|
|
"count": 100,
|
|
"duration": "6 months"
|
|
},
|
|
"domains": [
|
|
"AGG:SELF"
|
|
]
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"condition": "AND",
|
|
"rules": [
|
|
{
|
|
"name": "attrsub",
|
|
"kind": "attribution",
|
|
"criteria": [
|
|
{
|
|
"threshold": ">= 10%",
|
|
"thresholdOn": "submissions",
|
|
"window": {
|
|
"count": 100,
|
|
"duration": "6 months"
|
|
},
|
|
"domains": [
|
|
"AGG:SELF"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "lowOrOpComm",
|
|
"kind": "history",
|
|
"criteriaJoin": "OR",
|
|
"criteria": [
|
|
{
|
|
"window": {
|
|
"count": 100,
|
|
"duration": "6 months"
|
|
},
|
|
"comment": "< 50%"
|
|
},
|
|
{
|
|
"window": {
|
|
"count": 100,
|
|
"duration": "6 months"
|
|
},
|
|
"comment": "> 40% OP"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"actions": [
|
|
{
|
|
"kind": "report",
|
|
"content": "{{rules.attr.largestPercent}}{{rules.attrsub.largestPercent}} of {{rules.attr.activityTotal}}{{rules.attrsub.activityTotal}} items ({{rules.attr.window}}{{rules.attrsub.window}}){{#rules.loworopcomm.thresholdSummary}} => {{rules.loworopcomm.thresholdSummary}}{{/rules.loworopcomm.thresholdSummary}}"
|
|
},
|
|
//
|
|
//
|
|
{
|
|
"kind": "remove",
|
|
// remove the line below after confirming behavior is acceptable
|
|
"dryRun": true
|
|
},
|
|
// optionally remove "dryRun" from below if you want to leave a comment on removal
|
|
// PROTIP: the comment is bland, you should make it better
|
|
{
|
|
"kind": "comment",
|
|
"content": "Your submission has been removed it comprises 10% or more of your recent history ({{rules.attr.largestPercent}}{{rules.attrsub.largestPercent}}). This is against [reddit's self promotional guidelines.](https://www.reddit.com/wiki/selfpromotion#wiki_guidelines_for_self-promotion_on_reddit)",
|
|
"distinguish": true,
|
|
"dryRun": true
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|