Page MenuHomePhabricator

Update scoring (ORES) extension
Closed, ResolvedPublic

Description

So that it works with all new models and no longer uses the deprecated stuff.

Event Timeline

Petrb triaged this task as High priority.Aug 9 2017, 7:36 PM

We did this:

query->URL = this->GetServer(WikiEdit->GetSite()) + WikiEdit->GetSite()->Name + "/reverted/" + QString::number(WikiEdit->RevID) + "/";

We now do this for every edit:

query->URL = this->GetServer(WikiEdit->GetSite()) + WikiEdit->GetSite()->Name + "/damaging/" + QString::number(WikiEdit->RevID) + "/";

Ask Aaron if that is correct and if not what should we do :)

So I talked to Aaron and now I know I need to write this all to comments, since he already told me this in Vienna and I forgot it :)

Both of these are doable but it's an old format, what we need to do:

https://ores.wikimedia.org/v3/scores/enwiki?revids=RevID

This will return all models, where "reverted" and "damaging" both report bad edits, but damaging is far more appropriate, as reverted is based on ALL reverted edits, including good edits.

Petrb claimed this task.