Skip to content
GitLab
    • Explore Projects Groups Topics Snippets
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • fusiondirectory-orchestrator fusiondirectory-orchestrator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 24
    • Issues 24
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 7
    • Merge requests 7
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • fusiondirectoryfusiondirectory
  • fusiondirectory-orchestratorfusiondirectory-orchestrator
  • Issues
  • #84
Something went wrong while setting issue due date.
Closed
Open
Issue created 1 month ago by bmortier@bmortierMaintainer
  • New related issue

  • New related issue

Reorganising FusionDirectory Orchestrator sources

Closed

Reorganising FusionDirectory Orchestrator sources

Hello,

When reading the source, if found it not easy to read and understand on all the source, so we decided to reorganize it

here is the new organization


├── api
│   ├── index.php 
│   ├── loginEndPoint.php 
│   ├── logoutEndPoint.php 
│   └── refreshEndPoint.php 
├── AUTHORS.md 
├── Changelog.md 
├── CODE_OF_CONDUCT.md 
├── config
│   ├── bootstrap.php 
│   └── tokens.php 
├── contrib
│   ├── apache
│   │   └── fusiondirectory-orchestrator-apache.conf 
│   ├── api
│   │   ├── centos.htaccess 
│   │   └── debian.htaccess 
│   ├── openldap
│   │   └── fusiondirectory-orchestrator.schema 
│   └── orchestrator.conf 

│   |interfaces (top)
│   │   EndpointInterface.php 

│   |handlers (top)
│     ├── ErrorHandler.php 

│   |exceptions (top)
│   ├── TokenExpiredException.php 
│   ├── InvalidSignatureException.php 


├── library (top)
│   ├── tasks
│   ├── TaskController.php 
│   ├── TaskGateway.php 

│   ├── auth
│      ├──  Authentication.php 
│      ├── JWTCodec.php 
│      ├── UserGateway.php 
 │      ├── RefreshTokenGateway.php 

│   ├── ldap
│   ├──  |Ldap.php 

├── LICENSE 
├── plugins (top)
│   └── tasks
|       └──utils
│   │     ├── MailUtils.php 
│   │     ├── ReminderTokenUtils.php 
│   │     └── Utils.php 
│       ├── Archive.php 
│       ├── Audit.php 
│       ├── LifeCycle.php 
│       ├── Mail.php 
│       ├── Notifications.php 
│       └── Reminder.php 
├── README.md 
└── SECURITY.md

    Tasks

    0

    No tasks are currently assigned. Use tasks to break down this issue into smaller parts.

    Linked items
    1

    • errorhandler.php is called statically in config/bootstrap.php so a patch should be change due to reorganising files
      #85
      FusionDirectory Orchestrator 1.2
      Assigned to bmortier

    Related merge requests

    2
    • Resolve "Reorganising FusionDirectory Orchestrator sources"
      !86
    • Resolve "Reorganising FusionDirectory Orchestrator sources"
      !94
      FusionDirectory Orchestrator 1.2
      Assigned to bmortier

    Activity


    • bmortier assigned to @bmortier 1 month ago

      assigned to @bmortier

    • bmortier added PJ1802-0188 label 1 month ago

      added PJ1802-0188 label

    • bmortier created branch 84-reorganising-fusiondirectory-orchestrator-sources to address this issue 1 month ago

      created branch 84-reorganising-fusiondirectory-orchestrator-sources to address this issue

    • bmortier mentioned in merge request !86 (merged) 1 month ago

      mentioned in merge request !86 (merged)

    • bmortier
      bmortier @bmortier · 1 month ago
      Author Maintainer

      hello @tdockx @oalexa

      here is the now organization

      ├── api
      │   ├── index.php
      │   ├── loginEndPoint.php
      │   ├── logoutEndPoint.php
      │   └── refreshEndPoint.php
      ├── AUTHORS.md
      ├── Changelog.md
      ├── CODE_OF_CONDUCT.md
      ├── config
      │   ├── bootstrap.php
      │   └── tokens.php
      ├── contrib
      │   ├── apache
      │   │   └── fusiondirectory-orchestrator-apache.conf
      │   ├── api
      │   │   ├── centos.htaccess
      │   │   └── debian.htaccess
      │   ├── openldap
      │   │   └── fusiondirectory-orchestrator.schema
      │   └── orchestrator.conf
      ├── exceptions
      │   ├── InvalidSignatureException.php
      │   └── TokenExpiredException.php
      ├── handlers
      │   └── ErrorHandler.php
      ├── interfaces
      │   └── EndpointInterface.php
      ├── library
      │   ├── auth
      │   │   ├── Authentication.php
      │   │   ├── JWTCodec.php
      │   │   ├── RefreshTokenGateway.php
      │   │   └── UserGateway.php
      │   ├── ldap
      │   │   └── Ldap.php
      │   └── tasks
      │       ├── TaskController.php
      │       └── TaskGateway.php
      ├── LICENSE
      ├── plugins
      │   └── tasks
      │       ├── Archive.php
      │       ├── Audit.php
      │       ├── LifeCycle.php
      │       ├── Mail.php
      │       ├── Notifications.php
      │       ├── Reminder.php
      │   └── core
      │       ├── MailUtils.php
      │       ├── ReminderTokenUtils.php
      │       └── CoreUtils.php
      ├── README.md
      └── SECURITY.md
      ```
      Edited 4 days ago by bmortier
    • bmortier added 20m of time spent 1 month ago

      added 20m of time spent

    • bmortier marked this issue as related to #85 (closed) 1 month ago

      marked this issue as related to #85 (closed)

    • bmortier changed milestone to %FusionDirectory Orchestrator 1.2 1 month ago

      changed milestone to %FusionDirectory Orchestrator 1.2

    • bmortier created branch 84-reorganising-fusiondirectory-orchestrator-sources to address this issue 4 days ago

      created branch 84-reorganising-fusiondirectory-orchestrator-sources to address this issue

    • bmortier mentioned in merge request !94 (merged) 4 days ago

      mentioned in merge request !94 (merged)

    • bmortier added 1h of time spent 4 days ago

      added 1h of time spent

    • bmortier added Changed label 4 days ago

      added Changed label

    • bmortier closed 4 days ago

      closed

    Please register or sign in to reply
    Assignee
    bmortier's avatar
    bmortier
    Assign to
    Labels
    0
    None
    0
    None
      Assign labels
    • Manage project labels

    Milestone
    No milestone
    None
    Due date
    None
    None
    None
    Time tracking
    No estimate or time spent
    Confidentiality
    Not confidential
    Not confidential

    You are going to turn on confidentiality. Only project members with at least the Reporter role, the author, and assignees can view or be notified about this issue.

    Lock issue
    Unlocked
    0
    0 Participants
    Reference:

    Menu

    Explore Projects Groups Topics Snippets