Module: MediaWiktory::Wikipedia::Modules::Exturlusage
- Defined in:
- lib/mediawiktory/wikipedia/modules/exturlusage.rb
Overview
Enumerate pages that contain a given URL.
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
-
#expandurl ⇒ self
Expand protocol-relative URLs with the canonical protocol.
-
#limit(value) ⇒ self
How many pages to return.
-
#namespace(*values) ⇒ self
The page namespaces to enumerate.
-
#offset(value) ⇒ self
When more results are available, use this to continue.
-
#prop(*values) ⇒ self
Which pieces of information to include:.
-
#protocol(value) ⇒ self
Protocol of the URL.
-
#query(value) ⇒ self
Search string without protocol.
Instance Method Details
#expandurl ⇒ self
Expand protocol-relative URLs with the canonical protocol.
87 88 89 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 87 def () merge(euexpandurl: 'true') end |
#limit(value) ⇒ self
How many pages to return.
80 81 82 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 80 def limit(value) merge(eulimit: value.to_s) end |
#namespace(*values) ⇒ self
The page namespaces to enumerate.
67 68 69 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 67 def namespace(*values) values.inject(self) { |res, val| res._namespace(val) or fail ArgumentError, "Unknown value for namespace: #{val}" } end |
#offset(value) ⇒ self
When more results are available, use this to continue.
38 39 40 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 38 def offset(value) merge(euoffset: value.to_s) end |
#prop(*values) ⇒ self
Which pieces of information to include:
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 25 def prop(*values) values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" } end |
#protocol(value) ⇒ self
Protocol of the URL. If empty and euquery is set, the protocol is http. Leave both this and euquery empty to list all external links.
46 47 48 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 46 def protocol(value) _protocol(value) or fail ArgumentError, "Unknown value for protocol: #{value}" end |
#query(value) ⇒ self
Search string without protocol. See Special:LinkSearch. Leave empty to list all external links.
59 60 61 |
# File 'lib/mediawiktory/wikipedia/modules/exturlusage.rb', line 59 def query(value) merge(euquery: value.to_s) end |