# frozen_string_literal: true module MediaWiktory::Wikipedia module Modules # Returns all pages that use the given entity IDs. # # The "submodule" (MediaWiki API term) is included in action after setting some param, providing # additional tweaking for this param. Example (for {MediaWiktory::Wikipedia::Actions::Query} and # its submodules): # # ```ruby # 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. # module Wblistentityusage # Properties to add to the result. # # @param values [Array] Allowed values: "url" (If enabled the url of the entity will be added to the result). # @return [self] def prop(*values) values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" } end # @private def _prop(value) defined?(super) && super || ["url"].include?(value.to_s) && merge(wbeuprop: value.to_s, replace: false) end # Only return entity IDs that used this aspect. # # @param values [Array] Allowed values: "S", "L", "T", "X", "O". # @return [self] def aspect(*values) values.inject(self) { |res, val| res._aspect(val) or fail ArgumentError, "Unknown value for aspect: #{val}" } end # @private def _aspect(value) defined?(super) && super || ["S", "L", "T", "X", "O"].include?(value.to_s) && merge(wbeuaspect: value.to_s, replace: false) end # Entities that have been used. # # @param values [Array] # @return [self] def entities(*values) values.inject(self) { |res, val| res._entities(val) } end # @private def _entities(value) merge(wbeuentities: value.to_s, replace: false) end # How many entity usages to return. # # @param value [Integer, "max"] # @return [self] def limit(value) merge(wbeulimit: value.to_s) end # When more results are available, use this to continue. # # @param value [String] # @return [self] def continue(value) merge(wbeucontinue: value.to_s) end end end end