中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何分析WebApiClient的接口輸入驗證

發布時間:2022-01-05 16:49:14 來源:億速云 閱讀:170 作者:柒染 欄目:大數據

本篇文章給大家分享的是有關如何分析WebApiClient的接口輸入驗證,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1. 文章目的

隨著WebApiClient的不斷完善,越來越多開發者選擇WebApiClient替換原生的HttpClient,下面將介紹WebApiClient的接口參數輸入有效性驗證的新特性。

2.DataAnnotations介紹

asp.net mvc服務端編程中,我們在創建模型的時候,使用System.ComponentModel.DataAnnotations相關的驗證特性,配合mvc框架,可以做前端和后端雙向輸入驗證的效果。

public class UserInfo{    [Required]    [StringLength(10, MinimumLength = 1)]    

   public string Account { get; set; }    [Required]    [StringLength(10, MinimumLength = 6)]  

   public string Password { get; set; } }

以上的Required就是驗證特性,asp.net mvc在模型綁定的時候,會進行驗證一遍,驗證結果放在控制器的ModelState屬性里面。當然System.ComponentModel.DataAnnotations并不是asp.net mvc特有的,而是基礎庫自帶的,也就是說任何框架下都是可以使用的。

3. 接口參數值的輸入驗證

Validator靜態類提ValidateObject相關的方法,用于驗證實例和實例的屬性值,WebApiClient使用Validator類來完成接口方法的參數值輸入驗證:

/// <summary>

/// 提供參數值和參數的屬性值輸入合法性驗證

/// </summary>

static class ParameterValidator

{

    /// <summary>

    /// 類型的屬性否需要驗證緩存

    /// </summary>

    private static readonly ConcurrentCache<Type, bool> cache = new ConcurrentCache<Type, bool>();

    /// <summary>

    /// 返回是否需要進行屬性驗證

    /// </summary>

    /// <param name="instance">實例</param>

    /// <returns></returns>

    private static bool IsNeedValidateProperty(object instance)

    {

        if (instance == null)

        {

            return false;

        }

        var type = instance.GetType();

        if (type == typeof(string) || type.GetTypeInfo().IsValueType == true)

        {

            return false;

        }

        return cache.GetOrAdd(type, t => t.GetProperties().Any(p => p.CanRead && p.IsDefined(typeof(ValidationAttribute), true)));

    }

    /// <summary>

    /// 驗證參數值輸入合法性

    /// 驗證參數的屬性值輸入合法性

    /// </summary>

    /// <param name="parameter">參數描述</param>

    /// <param name="validateProperty">是否驗證屬性值</param>

    /// <exception cref="ValidationException"></exception>

    public static void Validate(ApiParameterDescriptor parameter, bool validateProperty)

    {

        var name = parameter.Name;

        var instance = parameter.Value;

        foreach (var validation in parameter.ValidationAttributes)

        {

            validation.Validate(instance, name);

        }

        if (validateProperty == true && IsNeedValidateProperty(instance) == true)

        {

            var ctx = new ValidationContext(instance) { MemberName = name };

            Validator.ValidateObject(instance, ctx, true);

        }

    }

}

4.接口參數的DataAnnotations聲明

4.1 聲明參數值的驗證

例如GetByIdAsync方法有個id的參數,服務器要求必填且最大長度為10的字符串,我們可以使用Required, StringLength(10)特性修飾id這個參數,在接口調用時,WebApiClient會對id值進行驗證,如果不通過則拋出ValidationException的異常。

// /GET webapi/user/GetById?id=id001// Return HttpResponseMessage[HttpGet("webapi/user/GetById/{id}")][BasicAuth("userName", "password")]ITask<HttpResponseMessage> GetByIdAsync(    [Required, StringLength(10)] string id);

4.2 聲明參數值的屬性驗證

對于自定義的模型類型,只要在屬性里聲明了相關的DataAnnotations,WebApiClient就自動進行屬性的輸入驗證。

public class UserInfo

{

    [Required]

    [StringLength(10, MinimumLength = 1)]

    public string Account { get; set; }

    [Required]

    [StringLength(10, MinimumLength = 6)]

    public string Password { get; set; }

}

// POST webapi/user/UpdateWithJson

// Body {"Account":"laojiu","Password":"123456"}

// Return json或xml內容

[HttpPost("webapi/user/UpdateWithJson")]

ITask<UserInfo> UpdateWithJsonAsync(

    [JsonContent("yyyy-MM-dd HH:mm:ss")] UserInfo user);

當user參數不為null的情況,就會驗證它的Account和Password兩個屬性。

4.3 聲明參數值、參數的屬性值同時驗證

對于4.2的例子,如果我們希望user參數值也不能為null,可以如下聲明方法:

// POST webapi/user/UpdateWithJson// Body {"Account":"laojiu","Password":"123456"}
// Return json或xml內容
[HttpPost("webapi/user/UpdateWithJson")]ITask<UserInfo> UpdateWithJsonAsync(
    [Required][JsonContent("yyyy-MM-dd HH:mm:ss")] UserInfo user);

5. 禁用參數的屬性驗證

如果你的模型的屬性已聲明驗證特性,但不希望WebApiClient進行屬性值驗證,可以在創建接口實例的時候,在配置項里禁用屬性驗證:

var config = new HttpApiConfig
{
    UseParameterPropertyValidate = false};var client = HttpApiClient.Create<IUserApi>(config);

以上就是如何分析WebApiClient的接口輸入驗證,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

施甸县| 嘉黎县| 伊宁市| 荃湾区| 勃利县| 望谟县| 从化市| 孝义市| 淮北市| 临澧县| 延寿县| 体育| 增城市| 南康市| 南宫市| 盐津县| 定日县| 福泉市| 九江县| 香河县| 洱源县| 长子县| 盐津县| 隆林| 岳阳县| 岳阳市| 苍山县| 阳春市| 房产| 台东市| 娱乐| 贡山| 德清县| 仙桃市| 武威市| 亚东县| 双峰县| 清原| 富民县| 清丰县| 通道|