You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.3 KiB
86 lines
2.3 KiB
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Znyc.CloudCar.IServices.Auth;
|
|
using Znyc.CloudCar.Model.Dtos.Auth;
|
|
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.Controller
|
|
{
|
|
public class AuthController : ControllerBase
|
|
{
|
|
private readonly IAuthService _authService;
|
|
|
|
public AuthController(IAuthService authService)
|
|
{
|
|
_authService = authService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 百度地图获取AccessToken
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Authorize]
|
|
[Route("api/v1/auth/baidu/accesstoken")]
|
|
public ResponseOutput GetAccessTokenAsync()
|
|
{
|
|
return _authService.GetAccessTokenAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取微信access_token
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Authorize]
|
|
[Route("api/v1/auth/weixin/accesstoken")]
|
|
public WxAccessTokenOutput GetWxAccessTokenAsync()
|
|
{
|
|
return _authService.GetWxAccessTokenAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取小程序
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
[HttpGet]
|
|
[Route("api/v1/auth/weixin/unlimited")]
|
|
public ResponseOutput GetUnlimitedAsync()
|
|
{
|
|
return _authService.GetUnlimitedAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("api/v1/auth/weixin/{sellingPrice}")]
|
|
public decimal GetCallPhoneCurrency(int sellingPrice)
|
|
{
|
|
if (sellingPrice < 100000)
|
|
{
|
|
return 10;
|
|
}
|
|
else
|
|
{
|
|
var a = sellingPrice / 100000;
|
|
int b = Convert.ToInt32(sellingPrice / 100000 + 1);
|
|
return b * 10;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取小程序
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
[HttpGet]
|
|
[Route("api/v1/auth/weixin/qrcode/{id}")]
|
|
public ResponseOutput GetQrCodeAsync(long id)
|
|
{
|
|
return _authService.GetQrCodeAsync(id);
|
|
}
|
|
}
|
|
}
|
|
|