Class: MediaWiktory::Wikipedia::Actions::Cxsuggestionlist
- Defined in:
- lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb
Overview
Manage the suggestion lists. Add suggestions to lists and remove them.
Usage:
api.cxsuggestionlist.listname(value).perform # returns string with raw output
# or
api.cxsuggestionlist.listname(value).response # returns output parsed and wrapped into Response object
See Base for generic explanation of working with MediaWiki actions and Response for working with action responses.
All action's parameters are documented as its public methods, see below.
Instance Method Summary collapse
-
#from(value) ⇒ self
The source language code.
-
#listaction(value) ⇒ self
Action to be performed on the list.
-
#listname(value) ⇒ self
Suggestion list name.
-
#titles(*values) ⇒ self
Page titles.
-
#to(value) ⇒ self
The target language code.
-
#token(value) ⇒ self
A "csrf" token retrieved from action=query&meta=tokens.
Methods inherited from Post
Methods inherited from Base
#inspect, #merge, #name, #perform, #response, #to_h, #to_param, #to_url
Methods included from GlobalParams
#assert, #assertuser, #centralauthtoken, #curtimestamp, #errorformat, #errorlang, #errorsuselocal, #format, #maxage, #maxlag, #origin, #requestid, #responselanginfo, #servedby, #smaxage, #uselang
Instance Method Details
#from(value) ⇒ self
The source language code.
60 61 62 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 60 def from(value) merge(from: value.to_s) end |
#listaction(value) ⇒ self
Action to be performed on the list.
34 35 36 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 34 def listaction(value) _listaction(value) or fail ArgumentError, "Unknown value for listaction: #{value}" end |
#listname(value) ⇒ self
Suggestion list name.
26 27 28 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 26 def listname(value) merge(listname: value.to_s) end |
#titles(*values) ⇒ self
Page titles.
47 48 49 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 47 def titles(*values) values.inject(self) { |res, val| res._titles(val) } end |
#to(value) ⇒ self
The target language code.
68 69 70 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 68 def to(value) merge(to: value.to_s) end |
#token(value) ⇒ self
A "csrf" token retrieved from action=query&meta=tokens
76 77 78 |
# File 'lib/mediawiktory/wikipedia/actions/cxsuggestionlist.rb', line 76 def token(value) merge(token: value.to_s) end |