Skip to content

PhoenixIra/scm-ldap-plugin

 
 

Repository files navigation

SCM-Manager

scm-ldap-plugin

This plugin provides an Authentication for SCM manager using LDAP.

Build and testing

The plugin can be compiled and packaged with the normal maven lifecycle:

  • clean - mvn clean - removes the target directory, can be combined with other phases
  • compile - mvn compile - compiles Java code and creates the ui bundle
  • test - mvn test - executes test for Java and JavaScript
  • install - mvn install - installs the plugin (smp and jar) in the local maven repository
  • package - mvn package - creates the final plugin bundle (smp package) in the target folder
  • deploy - mvn deploy - deploys the plugin (smp and jar) to the configured remote repository

For the development and testing the serve lifecycle of the plugin can be used:

  • run - mvn run - starts scm-manager with the plugin pre installed.

If the plugin was started with mvn run, the default browser of the os should be automatically opened. If the browser does not start automatically, start it manually and go to http://localhost:8081/scm.

In this mode each change to web files (src/main/js or src/main/webapp), should trigger a reload of the browser with the made changes. If you compile a class (e.g.: with your IDE from src/main/java to target/classes), the SCM-Manager context will restart automatically. So you can see your changes without restarting the server.

Test-setup

To test this plugin against a ldap you may use a preconfigured ldap inside a docker container:

docker pull rroemhild/test-openldap
docker run --privileged -d -p 389:389 rroemhild/test-openldap

Or simply use docker-compose:

docker-compose up

To connect against this ldap container you must set the following settings in your global ldap configuration:

  • Select Profile => Custom
  • Set Base DN to dc=planetexpress,dc=com
  • Set Connection DN to cn=admin,dc=planetexpress,dc=com
  • Set the Connection Password to GoodNewsEveryone
  • Set search filter to (&(objectClass=inetOrgPerson)(uid={0}))
  • Set group filter to (&(objectClass=groupOfUniqueNames)(uniqueMember={0}))

Now you can test the connection with username professor and password professor.

Directory & File structure

A quick look at the files and directories you'll see in a SCM-Manager project.

.
├── node_modules/
├── src/
|   ├── main/
|   |   ├── java/
|   |   ├── js/
|   |   └── resources/
|   ├── test/
|   |   ├── java/
|   |   └── resources/
|   └── target/
├── .editorconfig
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── package.json
├── pom.xml
├── README.md
├── tsconfig.json
└── yarn.lock
  1. node_modules/: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.

  2. src/: This directory will contain all of the code related to what you see or not. src is a convention for “source code”.

    1. main/
      1. java/: This directory contain the Java code.
      2. js/: This directory contains the JavaScript code for the web ui, inclusive unit tests: suffixed with .test.ts
      3. resources/: This directory contains the the classpath resources.
    2. test/
      1. java/: This directory contains the Java unit tests.
      2. resources/: This directory contains classpath resources for unit tests.
    3. target/: This is the build directory.
  3. .editorconfig: This is a configuration file for your editor using EditorConfig. The file specifies a style that IDEs use for code.

  4. .gitignore: This file tells git which files it should not track / not maintain a version history for.

  5. CHANGELOG.md: All notable changes to this project will be documented in this file.

  6. LICENSE: This project is licensed under the MIT license.

  7. package.json: Here you can find the dependency/build configuration and dependencies for the frontend.

  8. pom.xml: Maven configuration, which also includes things like metadata.

  9. README.md: This file, containing useful reference information about the project.

  10. tsconfig.json This is the typescript configuration file.

  11. yarn.lock: This is the ui dependency configuration.

Need help?

Looking for more guidance? Full documentation lives on our homepage or the dedicated pages for our plugins. Do you have further ideas or need support?

  • Community Support - Contact the SCM-Manager support team for questions about SCM-Manager, to report bugs or to request features through the official channels. Find more about this here.

  • Enterprise Support - Do you require support with the integration of SCM-Manager into your processes, with the customization of the tool or simply a service level agreement (SLA)? Contact our development partner Cloudogu! Their team is looking forward to discussing your individual requirements with you and will be more than happy to give you a quote. Request Enterprise Support.

About

Authentication for SCM-Manager using LDAP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 86.4%
  • TypeScript 13.6%