2016年3月8日 星期二

JAVA junit測試 AD帳密驗證 + search AD displayName(顯示名稱)

  1. package junit.test.AD;
  2.  
  3. import java.util.Hashtable;
  4.  
  5. import javax.naming.AuthenticationException;
  6. import javax.naming.CommunicationException;
  7. import javax.naming.Context;
  8. import javax.naming.NamingEnumeration;
  9. import javax.naming.NamingException;
  10. import javax.naming.directory.Attributes;
  11. import javax.naming.directory.SearchControls;
  12. import javax.naming.directory.SearchResult;
  13. import javax.naming.ldap.InitialLdapContext;
  14. import javax.naming.ldap.LdapContext;
  15.  
  16. import org.junit.Test;
  17.  
  18.  
  19. public class AdTest {
  20. @Test
  21. public void test() {
  22. // ResourceBundle res = ResourceBundle.getBundle("config");
  23. // String ldapURL = res.getString("Active.directory.ldapURL");
  24. String ldapURL = "ldap://172.23.101.108:389" ;
  25. System.out.println(ldapURL);
  26. String account = "admin";
  27. String password = "p@ssw0rd";
  28. try{
  29. LDAP_AUTH_AD(ldapURL, account, password);
  30. System.out.println("認證成功!");
  31. } catch (Exception e) {
  32. System.out.println(e.getMessage());
  33. }
  34. }
  35. public static void LDAP_AUTH_AD(String ldap_url, String account, String password) throws Exception {
  36. if (account.isEmpty() || password.isEmpty()) throw new Exception("認證失敗!");
  37. Hashtable env = new Hashtable();
  38. env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
  39. env.put(Context.PROVIDER_URL, ldap_url);
  40. env.put(Context.SECURITY_AUTHENTICATION, "simple");
  41. env.put(Context.SECURITY_PRINCIPAL, account+"@mizuho.com");
  42. env.put(Context.SECURITY_CREDENTIALS, password);
  43. LdapContext ctx = null;
  44. try {
  45. ctx = new InitialLdapContext(env, null);
  46. } catch (AuthenticationException e) {
  47. /**
  48. * error Code 說明 :
  49. * 525 : 用戶沒有找到
  50. * 52e : 證號不正確
  51. * 530 : 此時間不允許登入(not permitted to logon at this time)
  52. * 532 : 密碼期滿
  53. * 533 : 帳號不可用
  54. * 701 : 帳戶期滿
  55. * 773 : 用戶必須重設密碼
  56. * data 後面為錯誤代碼
  57. */
  58. throw new Exception(e.getMessage() + "認證失敗!");
  59. } catch (CommunicationException e) {
  60. throw new Exception("找不到伺服器!");
  61. } catch (Exception e) {
  62. throw new Exception("發生未知的錯誤!");
  63. } finally {
  64. if (ctx != null) {
  65. try {
  66. ctx.close();
  67. } catch (NamingException e) {
  68. }
  69. }
  70. }
  71. }
  72. @Test
  73. public void testQueryAdUser() throws NamingException {
  74. String userId = "admin" ;
  75. String ldapURL = "ldap://172.23.101.108:389" ;
  76. String domainName = "mizuho.com";
  77. String account = "admin";
  78. String password = "p@ssw0rd";
  79. Hashtable env = new Hashtable();
  80. env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
  81. env.put(Context.PROVIDER_URL, ldapURL);
  82. env.put(Context.SECURITY_AUTHENTICATION, "simple");
  83. env.put(Context.SECURITY_PRINCIPAL, account+"@"+domainName);
  84. env.put(Context.SECURITY_CREDENTIALS, password);
  85. LdapContext ldapContext = new InitialLdapContext(env, null);
  86. SearchControls searchCtls = new SearchControls();
  87. String returnedAtts[] = { "sn", "givenName", "samAccountName","displayName" };
  88. searchCtls.setReturningAttributes(returnedAtts);
  89. searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
  90. String searchFilter = "(&(userPrincipalName="+userId+"@"+domainName+"))";
  91. String searchBase = "dc=mizuho,dc=com";
  92. // initialize counter to total the results
  93. int totalResults = 0;
  94. // Search for objects using the filter
  95. NamingEnumeration answer = ldapContext.search(searchBase,
  96. searchFilter, searchCtls);
  97. // Loop through the search results
  98. while (answer.hasMoreElements()) {
  99. SearchResult sr = (SearchResult) answer.next();
  100. totalResults++;
  101. System.out.println(">>>" + sr.getName());
  102. String displayName = sr.getName().replace("CN=", "");
  103. displayName = displayName.split(",")[0] ;
  104. System.out.println("displayName >>" + displayName);
  105. Attributes attrs = sr.getAttributes();
  106. System.out.println(">>>>>>" + attrs.get("samAccountName"));
  107. }
  108. System.out.println("Total results: " + totalResults);
  109. ldapContext.close();
  110. }
  111. }

JQuery-MenuTree勾選

  1. <table>
  2. <caption>角色 - 新增</caption>
  3. <tr>
  4. <td>
  5. <fieldset>
  6. <br />角色名稱: <input type="text" value="" name="roleName"
  7. id="roleName" maxlength="50" /> <br />
  8. <legend>權限設定</legend>
  9. <div id="divTree">
  10. <ul>
  11. <li class="folder"><input type="checkbox" status="all"
  12. class="parent_B30000" id="B30000" name="access" value="B30000">分行管理
  13. <ul>
  14. <li><input type="checkbox" class="son_B30000" id="B31000"
  15. name="access" value="B31000">強制開關機設定</li>
  16. <li><input type="checkbox" class="son_B30000" id="B32000"
  17. name="access" value="B32000">定期開關機設定</li>
  18. <li><input type="checkbox" class="son_B30000" id="B33000"
  19. name="access" value="B33000">預約開關機設定</li>
  20. </ul></li>
  21. </ul>
  22. <ul>
  23. <li class="folder"><input type="checkbox" status="all"
  24. class="parent_B50000" id="B50000" name="access" value="B50000">行員帳號權限管理
  25. <ul>
  26. <li><input type="checkbox" class="son_B50000" id="B51000"
  27. name="access" value="B51000">帳號管理</li>
  28. <li><input type="checkbox" class="son_B50000" id="B52000"
  29. name="access" value="B52000">角色維護</li>
  30. </ul></li>
  31. </ul>
  32. </div>
  33. </fieldset>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td>
  38. <button type="reset" id="btnReset">重設</button>
  39. <button type="button" id="btnSubmit">新增</button>
  40. </td>
  41. </tr>
  42. </table>
  43. <script>
  44. $( document ).ready(function() {
  45. $('#btnSubmit').click(function(){
  46. if($('#roleName').val()==""){
  47. alert("請輸入角色名稱!");
  48. return false ;
  49. }
  50. var chk = false ;
  51. $('input[type=checkbox]').each(function () {
  52. if($(this).prop("checked")){
  53. chk = true ;
  54. }
  55. })
  56. if(!chk){
  57. alert("請選擇權限!");
  58. return false ;
  59. }else{
  60. $('#myForm').submit();
  61. }
  62. })
  63. $('input[type=checkbox]').click(function(){
  64. var checkClass = $(this).attr("class");
  65. console.info(checkClass);
  66. var parentClass = checkClass.replace("son","parent");
  67. var tmp = 'input[type=checkbox].'+checkClass ;
  68. allChk = false ;
  69. $(tmp).each(function () {
  70. if($(this).prop("checked")){
  71. allChk = true ;
  72. }
  73. if (allChk){
  74. var tmp2 = 'input[type=checkbox].'+parentClass
  75. $(tmp2).prop("checked",true);
  76. }
  77. else{
  78. var tmp2 = 'input[type=checkbox].'+parentClass
  79. $(tmp2).prop("checked",false);
  80. }
  81. })
  82. })
  83. var parentItem = $('input[status="all"]');
  84. $(parentItem).click(function(){
  85. if ($(this).prop("checked")){
  86. var checkClass = $(this).attr("class");
  87. var sonClass = checkClass.replace("parent","son");
  88. var tmpSon = 'input[type=checkbox].'+sonClass ;
  89. $(tmpSon).prop("checked",true);
  90. }else{
  91. var checkClass = $(this).attr("class");
  92. var sonClass = checkClass.replace("parent","son");
  93. var tmpSon = 'input[type=checkbox].'+sonClass ;
  94. $(tmpSon).prop("checked",false);
  95. }
  96. })
  97. })
  98. </script>