DiscordWikiBot [ˈdɪskɔːdˈwiːkibɒt] is a Discord bot that transforms [[wiki]] and {{template}} links in chat messages into actual links using MediaWiki APIs, and informs about recent changes in Wikimedia projects and on Translatewiki.net. It supports editing and deleting its own messages. It was originally developed for the Discord server of Russian Wikipedians. A private instance of the bot is available for Discord servers of Wikimedia communities.
DiscordWikiBot is cross-platform console app built with .NET Core. It uses DSharpPlus, WikiClientLibrary, and EvtSource for most of heavy lifting. Its code is published under MIT licence.
- Download the source files.
- Create
token.txt
in project folder with a private token for your Discord bot. If you haven’t created your own Discord bot, create it first. Do not share your private token. - Change
config.json
to your needs according to instructions there. - Add
eventStreams.json
file containing only{}
to the folder withconfig.json
if you intend to use recent changes streams (Wikimedia projects only). - Compile the bot’s binaries using any compiler that supports .NET Core (use IDEs like Visual Studio or MonoDevelop or dotnet CLI).
Important: When developing or updating the bot, take care of the folder where the application is compiled. That’s where eventStreams.json
and overrides.json
are being stored when running it, and if you clean the folder accidentally, all the data will get lost.
The version in this repository is configured for Russian Wikipedia by default. Your instance of the bot can change this by changing values in config.json
. Below is a short documentation for every available variable (remove lines starting with //
if you’re going to copy from here). Required parameters are marked.
{
// REQUIRED: User agent string.
// Change the username if you modified DiscordWikiBot internals (not including configs).
"userAgent": "DiscordWikiBot/{version} (https://w.wiki/4nm) (user:stjn)",
// Link to the bot’s source code
"repo": "<https://github.com/stjohann/DiscordWikiBot> (C# / MIT)",
// Use Discord’s buggy standard embeds for wikilinks
"useDiscordLinkEmbeds": false,
// Default domain for recent changes streams (only Wikimedia projects work here)
"domain": "ru.wikipedia.org",
// REQUIRED: Default language of the bot
"lang": "ru",
// REQUIRED: Default wikilink configuration
"wiki": "https://ru.wikipedia.org/wiki/$1"
}
Non-system variables in config.json
can be overridden per server (and some per channel) by members with ‘Manage server’ permission.
When the bot is enabled, it will transform [[link syntax]] to real URLs to the pages of your wiki or its interwiki links, and will transform {{template syntax}} to real URLs to the templates of your wiki. To stop the bot from reacting to links in your message, wrap it into ` (`[[example]]`) or escape [[ symbols (with \ before them).
DiscordWikiBot can be configured per server by server members with ‘Manage server’ permission. Available configuration includes the language of the bot, the default wiki URL, recent changes streams parameters etc. Up-to-date instructions for configuration of the bot are provided on Meta-Wiki.
DiscordWikiBot uses semver for versioning:
- Major versions (X.0.0) are changes that remove backwards-compatibility of any of the configuration files, including introducing new expectations from bot owners.
- Minor versions (0.X.0) are changes that introduce new features to the bot.
- Patch versions (0.0.X) are changes that fix existing code without introducing new features.
- Third-party bot maintainers can update the bot to minor/patch versions without any required changes.
Pull requests should, if possible, include a change in DiscordWikiBot/DiscordWikiBot.csproj
file with an appropriate version change.
Translations are done by volunteers on translatewiki.net. Pull requests with simple translation changes will not be accepted (except for en.json
).