blob: e3b4c0f6c8bb6ff0c9cf993e2b3b7dd80add8865 [file] [log] [blame]
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
local fetch_secrets = require("apisix.secret").fetch_secrets
local limit_count = require("apisix.plugins.limit-count.init")
local plugin_name = "limit-count"
local _M = {
version = 0.5,
priority = 1002,
name = plugin_name,
schema = limit_count.schema,
}
function _M.check_schema(conf)
return limit_count.check_schema(conf)
end
function _M.access(conf, ctx)
conf = fetch_secrets(conf, true, conf, "")
return limit_count.rate_limit(conf, ctx, plugin_name, 1)
end
return _M