-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement consumer credential (#11601)
- Loading branch information
Showing
24 changed files
with
2,428 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
-- | ||
-- 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 core = require("apisix.core") | ||
local plugins = require("apisix.admin.plugins") | ||
local plugin = require("apisix.plugin") | ||
local resource = require("apisix.admin.resource") | ||
local pairs = pairs | ||
|
||
local function check_conf(_id, conf, _need_id, schema) | ||
local ok, err = core.schema.check(schema, conf) | ||
if not ok then | ||
return nil, {error_msg = "invalid configuration: " .. err} | ||
end | ||
|
||
if conf.plugins then | ||
ok, err = plugins.check_schema(conf.plugins, core.schema.TYPE_CONSUMER) | ||
if not ok then | ||
return nil, {error_msg = "invalid plugins configuration: " .. err} | ||
end | ||
|
||
for name, _ in pairs(conf.plugins) do | ||
local plugin_obj = plugin.get(name) | ||
if not plugin_obj then | ||
return nil, {error_msg = "unknown plugin " .. name} | ||
end | ||
if plugin_obj.type ~= "auth" then | ||
return nil, {error_msg = "only supports auth type plugins in consumer credential"} | ||
end | ||
end | ||
end | ||
|
||
return true, nil | ||
end | ||
|
||
-- get_credential_etcd_key is used to splice the credential's etcd key (without prefix) | ||
-- from credential_id and sub_path. | ||
-- Parameter credential_id is from the uri or payload; sub_path is in the form of | ||
-- {consumer_name}/credentials or {consumer_name}/credentials/{credential_id}. | ||
-- Only if GET credentials list, credential_id is nil, sub_path is like {consumer_name}/credentials, | ||
-- so return value is /consumers/{consumer_name}/credentials. | ||
-- In the other methods, credential_id is not nil, return value is | ||
-- /consumers/{consumer_name}/credentials/{credential_id}. | ||
local function get_credential_etcd_key(credential_id, _conf, sub_path, _args) | ||
if credential_id then | ||
local uri_segs = core.utils.split_uri(sub_path) | ||
local consumer_name = uri_segs[1] | ||
return "/consumers/" .. consumer_name .. "/credentials/" .. credential_id | ||
end | ||
|
||
return "/consumers/" .. sub_path | ||
end | ||
|
||
return resource.new({ | ||
name = "credentials", | ||
kind = "credential", | ||
schema = core.schema.credential, | ||
checker = check_conf, | ||
get_resource_etcd_key = get_credential_etcd_key, | ||
unsupported_methods = {"post", "patch"} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.