| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- namespace Abp.Runtime.Session
- {
- /// <summary>
- /// Extension methods for <see cref="IAbpSession"/>.
- /// </summary>
- public static class AbpSessionExtensions
- {
- /// <summary>
- /// Gets current User's Id.
- /// Throws <see cref="AbpException"/> if <see cref="IAbpSession.UserId"/> is null.
- /// </summary>
- /// <param name="session">Session object.</param>
- /// <returns>Current User's Id.</returns>
- public static long GetUserId(this IAbpSession session)
- {
- if (!session.UserId.HasValue)
- {
- throw new AbpException("Session.UserId is null! Probably, user is not logged in.");
- }
- return session.UserId.Value;
- }
- /// <summary>
- /// Gets current Tenant's Id.
- /// Throws <see cref="AbpException"/> if <see cref="IAbpSession.TenantId"/> is null.
- /// </summary>
- /// <param name="session">Session object.</param>
- /// <returns>Current Tenant's Id.</returns>
- /// <exception cref="AbpException"></exception>
- public static int GetTenantId(this IAbpSession session)
- {
- if (!session.TenantId.HasValue)
- {
- throw new AbpException("Session.TenantId is null! Possible problems: No user logged in or current logged in user in a host user (TenantId is always null for host users).");
- }
- return session.TenantId.Value;
- }
- /// <summary>
- /// Creates <see cref="UserIdentifier"/> from given session.
- /// Returns null if <see cref="IAbpSession.UserId"/> is null.
- /// </summary>
- /// <param name="session">The session.</param>
- public static UserIdentifier ToUserIdentifier(this IAbpSession session)
- {
- return session.UserId == null
- ? null
- : new UserIdentifier(session.TenantId, session.GetUserId());
- }
- }
- }
|