Module: MediaWiktory::Wikipedia::Modules::Userinfo
- Defined in:
- lib/mediawiktory/wikipedia/modules/userinfo.rb
Overview
Get information about the current user.
The "submodule" (MediaWiki API term) is included in action after setting some param, providing additional tweaking for this param. Example (for Actions::Query and its submodules):
api.query # returns Actions::Query
.prop(:revisions) # adds prop=revisions to action URL, and includes Modules::Revisions into action
.limit(10) # method of Modules::Revisions, adds rvlimit=10 to URL
All submodule's parameters are documented as its public methods, see below.
Instance Method Summary collapse
-
#attachedwiki(value) ⇒ self
With uiprop=centralids, indicate whether the user is attached with the wiki identified by this ID.
-
#prop(*values) ⇒ self
Which pieces of information to include:.
Instance Method Details
#attachedwiki(value) ⇒ self
With uiprop=centralids, indicate whether the user is attached with the wiki identified by this ID.
38 39 40 |
# File 'lib/mediawiktory/wikipedia/modules/userinfo.rb', line 38 def attachedwiki(value) merge(uiattachedwiki: value.to_s) end |
#prop(*values) ⇒ self
Which pieces of information to include:
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/userinfo.rb', line 25 def prop(*values) values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" } end |