Module: MediaWiktory::Wikipedia::Modules::Backlinks
- Defined in:
- lib/mediawiktory/wikipedia/modules/backlinks.rb
Overview
Find all pages that link to the given page.
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
-
#continue(value) ⇒ self
When more results are available, use this to continue.
-
#dir(value) ⇒ self
The direction in which to list.
-
#filterredir(value) ⇒ self
How to filter for redirects.
-
#limit(value) ⇒ self
How many total pages to return.
-
#namespace(*values) ⇒ self
The namespace to enumerate.
-
#pageid(value) ⇒ self
Page ID to search.
-
#redirect ⇒ self
If linking page is a redirect, find all pages that link to that redirect as well.
-
#title(value) ⇒ self
Title to search.
Instance Method Details
#continue(value) ⇒ self
When more results are available, use this to continue.
41 42 43 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 41 def continue(value) merge(blcontinue: value.to_s) end |
#dir(value) ⇒ self
The direction in which to list.
62 63 64 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 62 def dir(value) _dir(value) or fail ArgumentError, "Unknown value for dir: #{value}" end |
#filterredir(value) ⇒ self
How to filter for redirects. If set to nonredirects when blredirect is enabled, this is only applied to the second level.
75 76 77 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 75 def filterredir(value) _filterredir(value) or fail ArgumentError, "Unknown value for filterredir: #{value}" end |
#limit(value) ⇒ self
How many total pages to return. If blredirect is enabled, the limit applies to each level separately (which means up to 2 * bllimit results may be returned).
88 89 90 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 88 def limit(value) merge(bllimit: value.to_s) end |
#namespace(*values) ⇒ self
The namespace to enumerate.
49 50 51 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 49 def namespace(*values) values.inject(self) { |res, val| res._namespace(val) or fail ArgumentError, "Unknown value for namespace: #{val}" } end |
#pageid(value) ⇒ self
Page ID to search. Cannot be used together with bltitle.
33 34 35 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 33 def pageid(value) merge(blpageid: value.to_s) end |
#redirect ⇒ self
If linking page is a redirect, find all pages that link to that redirect as well. Maximum limit is halved.
95 96 97 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 95 def redirect() merge(blredirect: 'true') end |
#title(value) ⇒ self
Title to search. Cannot be used together with blpageid.
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/backlinks.rb', line 25 def title(value) merge(bltitle: value.to_s) end |