1 Star 0 Fork 0

知书僮/StockSharp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CommunityAuthorization.cs 2.74 KB
一键复制 编辑 原始数据 按行查看 历史
#region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/StockSharp/StockSharp/blob/master/LICENSE
Removal of this comment is a violation of the license agreement.
Project: StockSharp.Community.Community
File: CommunityAuthorization.cs
Created: 2015, 11, 11, 2:32 PM
Copyright 2010 by StockSharp, LLC
*******************************************************************************************/
#endregion S# License
namespace StockSharp.Community
{
using System;
using System.Collections.Generic;
using System.Net;
using System.Security;
using Ecng.Security;
using StockSharp.Localization;
/// <summary>
/// The module of the connection access check based on the <see cref="IAuthenticationService"/> authorization.
/// </summary>
public class CommunityAuthorization : IAuthorization
{
private readonly Products _product;
/// <summary>
/// Initializes a new instance of the <see cref="CommunityAuthorization"/>.
/// </summary>
/// <param name="product">Product.</param>
public CommunityAuthorization(Products product)
{
_product = product;
}
/// <summary>
/// To check the username and password on correctness.
/// </summary>
/// <param name="login">Login.</param>
/// <param name="password">Password.</param>
/// <param name="clientAddress">Remote network address.</param>
/// <returns>Session ID.</returns>
public virtual Guid ValidateCredentials(string login, SecureString password, IPAddress clientAddress)
{
try
{
AuthenticationClient.Instance.Login(_product, login, password);
return Guid.NewGuid();
}
catch (Exception ex)
{
throw new UnauthorizedAccessException(LocalizedStrings.WrongLoginOrPassword, ex);
}
}
/// <summary>
/// Save user.
/// </summary>
/// <param name="login">Login.</param>
/// <param name="password">Password.</param>
/// <param name="possibleAddresses">Possible addresses.</param>
public void SaveUser(string login, SecureString password, IEnumerable<IPAddress> possibleAddresses)
{
throw new NotSupportedException();
}
/// <summary>
/// Delete user by login.
/// </summary>
/// <param name="login">Login.</param>
/// <returns>Returns <see langword="true"/>, if user was deleted, otherwise return <see langword="false"/>.</returns>
public bool DeleteUser(string login)
{
throw new NotSupportedException();
}
/// <summary>
/// Get all available users.
/// </summary>
public IEnumerable<Tuple<string, IEnumerable<IPAddress>>> AllUsers => throw new NotSupportedException();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhishutong_admin/StockSharp.git
git@gitee.com:zhishutong_admin/StockSharp.git
zhishutong_admin
StockSharp
StockSharp
master

搜索帮助