forked from CloudBreadProject/CloudBread-Admin-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCBAuth.cs
73 lines (65 loc) · 1.94 KB
/
CBAuth.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Security.Claims;
namespace CloudBreadAdminWebAuth
{
/**
* @class CBAuth
* @brief Processing CloudBread auth related task class including 3rd party authentication. \n
*/
public class CBAuth
{
/*
* @brief Before setup the authentication provider in Azure Portal, return passed memberID for dev and test purpose. \n
* @param pMemberID, pClaim object
*/
public static string getMemberID(string pMemberID, ClaimsPrincipal pClaim)
{
string sid;
try
{
if (pClaim.FindFirst(ClaimTypes.NameIdentifier) == null)
{
/// local or non-authentication provider
sid = pMemberID;
}
else
{
/// authentication provider set up
/// return Name from claim object
sid = pClaim.FindFirst(ClaimTypes.Name).Value;
}
}
catch (Exception)
{
throw;
}
return sid;
}
/*
* @brief Before setup the authentication provider in Azure Portal and debug mode, return dummy id for dev and test purpose. \n
* @param pClaim object
*/
public static string getMemberID(ClaimsPrincipal pClaim)
{
string sid;
try
{
#if DEBUG
sid = "[email protected]";
#else
/// authentication provider set up
/// return Name from claim object
sid = pClaim.FindFirst(ClaimTypes.Name).Value;
#endif
}
catch (Exception)
{
throw;
}
return sid;
}
}
}