ASP.NET Core见识录Amazing .NETdotNET

.NET CORE上传文件到码云仓库【搭建自己的图床】

2019-06-14  本文已影响3人  Run2948

.NET CORE上传文件到码云仓库【搭建自己的图床】

先建一个公共仓库(随意提交一个README文件或者.gitignore文件保证master分支的存在),然后到gitee的个人设置页面找到【私人令牌】菜单创建一个access_token。Gitee官方还友好的提供了基于swagger的API文档和调试页面: https://gitee.com/api/v5/swagger#/postV5ReposOwnerRepoContentsPath

搭建步骤

1.新建一个名为imagebed的仓库

2.为imagebed仓库创建master主分支

3.到个人设置页面找到【私人令牌】生成新令牌

4.使用Gitee官网API文档简单测试文件上传

使用方法

基于.NET CORE MVC项目实现

    /// <summary>
    /// 码云仓储文件上传API
    /// </summary>
    /// <param name="stream"></param>
    /// <param name="file"></param>
    /// <returns></returns>
    public async Task<(string url, bool success)> UploadGitee(Stream stream, string file)
    {
        string base64String = Convert.ToBase64String(stream.StreamToByte());
        string path = $"{DateTime.Now:yyyyMMdd}/{Path.GetFileName(file)}";
        using (var resp = await _httpClient.PostAsJsonAsync(AppConfig.GiteeConfig.ApiUrl + HttpUtility.UrlEncode(path), new
        {
            access_token = AppConfig.GiteeConfig.AccessToken,
            content = base64String,
            message = "上传一个文件"
        }))
        {
            if (resp.IsSuccessStatusCode || (await resp.Content.ReadAsStringAsync()).Contains("already exists"))
            {
                return (AppConfig.GiteeConfig.RawUrl + path, true);
            }
        }

        return await Task.Run(() => (null, false));
    }

    /// <summary>
    /// MVC上传文件
    /// </summary>
    /// <param name="file"></param>
    /// <returns></returns>
    [HttpPost("upload"), ApiExplorerSettings(IgnoreApi = false)]
    public async Task<ActionResult> UploadFile(IFormFile file)
    {
        var (url, success) = await _imagebedClient.UploadImage(file.OpenReadStream(), file.FileName);
        return await success ? Json(new { code = 1, msg = "success", data = url }) : Json(new { code = 0, msg = "failure" });            
    }

完整案例:https://github.com/Run2948/ImageBedDemo

上一篇下一篇

猜你喜欢

热点阅读