ewsterrenburg / python-otrs

Pythonic interface to OTRS SOAP API
GNU General Public License v3.0
47 stars 27 forks source link

Little Question #31

Open Modius22 opened 7 years ago

Modius22 commented 7 years ago

Hi Guys, Is an expansion planned for the OTRS CMDB? greetings Modius

mjducharme commented 7 years ago

I plan to do this in a few months after upgrading OTRS. A bug in the OTRS SOAP interface prevented me from even fetching a config item.

ewsterrenburg commented 7 years ago

We are not using this functionality in our OTRS (actually, I more or less only use this library to create example soap requests ;), yet I'd be happy to merge.

@mjducharme it seems you are doing more of the work than I am, if you want to become owner of this project, that's fine with me (you should have an invite now as a collaborator)

Modius22 commented 7 years ago

To explain this perhaps again more precisely =) I would like to query a CI from the OTRS CMDB from the outside. As a return I would like to have the CI information as well as the tickets with which the CI is linked. Do you have an idea?

mjducharme commented 7 years ago

Yes, please give me another week and I should have this functionality developed.

mjducharme commented 7 years ago

I have made progress but this is still not done. The main challenge is that the XML data for the CI objects has a very dynamic tree structure, so I need to create classes on-the-fly instead of using statically defined classes. This requires some changes to the core code.

mjducharme commented 7 years ago

I got the dynamic classes working, but decided it was not the best UI experience for the CIXMLData structure. Since that data structure can have multiple levels of children and is very flexible, I am using a dict for that, and created new functions to recursively create a dict from xml or xml from dict. It is about 80% complete. I have to fix the Attachments feature because for some reason in Config Items the attachment is under the "ConfigItem" structure inside Data instead of in the Data structure, so it doesn't correspond precisely with the way the ticket functions and FAQ functions use the attachments. I need to do a few more fixes to get the attachments to work properly.

edgarcsilva commented 7 years ago

HI @mjducharme !

Great job you is doing.

JulianDeal commented 6 years ago

@mjducharme This all sounds great! But you didn't push your work, did you? It would be extremely helpful for me right now. Or at least branching it. I don't even need the attachment feature.

ewsterrenburg commented 4 years ago

@mjducharme Have you looked into this in the mean time?