Wikipedia:AutoWikiBrowser/API migration
Appearance
- Home
Introduction and rules - User manual
How to use AWB - Discussion
Discuss AWB, report errors, and request features - User tasks
Request or help with AWB-able tasks - Technical
Technical documentation
Rationale
[edit]- Easier, uniform access to wiki using XML, much less prone to break in case of changes than plain HTML
- Potentially much faster, should save bandwidth considerably
- Would allow to minimise WebBrowser usage - less bugs, faster processing due to elimination of in-place DOM magic; also should make AWB much more portable (I suppose that Mono supports the basic WebBrowser crap we need to display previews and diffs - MaxSem)
Current write API status
[edit]Horribly immature: not tested widely enough, not fully reviewed security-wise, not enabled on any Wikimedia projects other than testwiki, even the older query functions are still subject to breaking changes.
- Enabled now, some problems remain.
We cannot release even a beta until it's enabled everywhere and included in a quarterly MW release, signifying some level of stability. (At least four to six months from now? - MaxSem)
- Important bugs
14210: Activate write API on production wikis (kinda tracking)fixed14261: More information in hookaborted API error needed - blocking issue for our purposes14443: successful edit causes server to return HTTP 500fixed- Search all API-related issues
Current progress on AWB side
[edit]~90% - logging in/out, editing, deletion and a semi-functional skeleton of asynchronous wrapper.
Things to be done
[edit]AWB
[edit]I assume that API editing should be made available as of version 5.0. -MaxSem
- Development should be continued as usual
- ApiEdit should be finished and maintained
- Support for nested exceptions should be added to ErrorHandler - done in rev 2911
- We could test API further right now by swithching to API-based previews, for example
- Political choice: session persistance
- We should probably store cookies, just like IE does in our current scheme
- Or make AWB completely profile-dependant?
- Could work, but would all users be "happy" saving their passwords somewhere..? —Reedy 09:47, 13 June 2008 (UTC)
- And move profiles away from registry?
- Storing where is safer?
- Registry was deemed one of the safer places, easily accessible, and meant that users didn't inadvertently send someone their profile, and were there for any settings loaded by that user on that computer. —Reedy 09:47, 13 June 2008 (UTC)
- If we store them in Application Data, accidental uncovery would be unlikely... MaxSem(Han shot first!) 11:08, 13 June 2008 (UTC)
- Registry was deemed one of the safer places, easily accessible, and meant that users didn't inadvertently send someone their profile, and were there for any settings loaded by that user on that computer. —Reedy 09:47, 13 June 2008 (UTC)
- Storing where is safer?
- And encrypt profiles with a master password?
- Normalise API usage in GetLists, by making it completely dependant on ApiEdit to retrieve data from the site and check the results for errors
- Somewhat done. GetLists Modulised by Reedy, and then commonised by MaxSem
- Write a thread-based wrapper for ApiEdit to use in interface
- Kill WebControl with fire
- Phase out the old editor class, probably not worth deleting it
- Make a branch of old-style AWB for usage by people from third-party wikis running older versions of MW. This branch shouldn't be able to edit Wikimedia sites. As such, we don't need it to follow the version checkpage. Its ErrorHandler shouldn't advice people to post every exception to WP:AWB/B, too.
- Release 5.0 and prepare enough vaseline when people will start reporting bizarre bugs o_0
AWBUpdater
[edit]Make it copy every file from .zip, not just every file it knows, as it is currently.Fixed- Take extra precautions that people don't use older updater.
- Make it update even if AWB.exe is corrupt or not present.
- Handle present plugins on update (delete? quarantine? automatically? ask user?). Probably, we could even use reflection to detect obviously outdated ones.
Implementation details
[edit]- Editing classes
- Don't use those dreaded singletons like WikiFunctions.Variables, they're hopelessly screwed up. Also, people should be able to reuse ApiEdit without having long sexual intecourse with AWB-specific stuff. Remember, Variables constructor can be called from zillion places without you even noticing this.