-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathCBAuth.cs
57 lines (49 loc) · 1.44 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
/**
* @file CBAuth.cs
* @brief Processing CloudBread auth related task class including 3rd party authentication. \n
* @author Dae Woo Kim
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.Azure.Mobile.Server.Config;
using System.Security.Claims;
namespace CloudBreadAuth
{
/**
* @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 MobileApp, return passed memberID for dev and test purpose. \n
* @param pMemberID
* @param 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 SID from claim object
sid = pClaim.FindFirst(ClaimTypes.NameIdentifier).Value.Replace("sid:", "");
}
}
catch (Exception)
{
throw;
}
return sid;
}
}
}