├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── acl.go ├── add_entry.go ├── add_entry_test.go ├── dn.go ├── dn_test.go ├── error.go ├── go.mod ├── go.sum ├── handler_add.go ├── handler_bind.go ├── handler_compare.go ├── handler_delete.go ├── handler_modify.go ├── handler_modifydn.go ├── handler_search_dse.go ├── handler_search_generic.go ├── handler_search_rootdn.go ├── handler_search_schema.go ├── integration_test.go ├── main.go ├── mapper.go ├── misc └── sample.sql ├── modify_entry.go ├── modify_entry_test.go ├── pass_through.go ├── ppolicy.go ├── repo.go ├── repo_hybrid.go ├── repo_hybrid_filter_test.go ├── schema.go ├── schema_openldap.go ├── schema_test.go ├── search_entry.go ├── server.go ├── test_util.go ├── util.go └── util_test.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | bin/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/README.md -------------------------------------------------------------------------------- /acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/acl.go -------------------------------------------------------------------------------- /add_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/add_entry.go -------------------------------------------------------------------------------- /add_entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/add_entry_test.go -------------------------------------------------------------------------------- /dn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/dn.go -------------------------------------------------------------------------------- /dn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/dn_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/go.sum -------------------------------------------------------------------------------- /handler_add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_add.go -------------------------------------------------------------------------------- /handler_bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_bind.go -------------------------------------------------------------------------------- /handler_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_compare.go -------------------------------------------------------------------------------- /handler_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_delete.go -------------------------------------------------------------------------------- /handler_modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_modify.go -------------------------------------------------------------------------------- /handler_modifydn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_modifydn.go -------------------------------------------------------------------------------- /handler_search_dse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_search_dse.go -------------------------------------------------------------------------------- /handler_search_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_search_generic.go -------------------------------------------------------------------------------- /handler_search_rootdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_search_rootdn.go -------------------------------------------------------------------------------- /handler_search_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/handler_search_schema.go -------------------------------------------------------------------------------- /integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/integration_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/main.go -------------------------------------------------------------------------------- /mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/mapper.go -------------------------------------------------------------------------------- /misc/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/misc/sample.sql -------------------------------------------------------------------------------- /modify_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/modify_entry.go -------------------------------------------------------------------------------- /modify_entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/modify_entry_test.go -------------------------------------------------------------------------------- /pass_through.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/pass_through.go -------------------------------------------------------------------------------- /ppolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/ppolicy.go -------------------------------------------------------------------------------- /repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/repo.go -------------------------------------------------------------------------------- /repo_hybrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/repo_hybrid.go -------------------------------------------------------------------------------- /repo_hybrid_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/repo_hybrid_filter_test.go -------------------------------------------------------------------------------- /schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/schema.go -------------------------------------------------------------------------------- /schema_openldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/schema_openldap.go -------------------------------------------------------------------------------- /schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/schema_test.go -------------------------------------------------------------------------------- /search_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/search_entry.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/server.go -------------------------------------------------------------------------------- /test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/test_util.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstandia/ldap-pg/HEAD/util_test.go --------------------------------------------------------------------------------