Metadata-Version: 2.1
Name: mirthpy
Version: 1.1.0
Summary: A python package to communicate with mirth connects client api.
Home-page: https://github.com/feathersct/mirthpy
Author: Clayton Feathers
Author-email: claytonfeathers@live.com
License: BSD 2-clause
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Healthcare Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests

# mirthpy
Python api wrapper for Mirth Connect

> **_NOTE:_**  This api wrapper is not totally complete with all of Mirth's REST api calls. If you have a request for a specific api call, please make an issue on GitHub.

## Examples
For specific examples and scripts that can be used, have a look at [mirthpy-examples](https://github.com/feathersct/mirthpy-scripts)


### Table of Contents
[Installation](#Installation)

[Setup](#Setup)

[Usage](#Usage)

[Supported Mirth API Calls](#SupportedCalls)

## Installation
<a name="Installation"></a>

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install mirthpy.

```bash
pip install mirthpy
```

<a name="Setup"></a>
## Setup
Config file must match the following: 
```sh
{
    "instanceName": "{instance IP or DNS Name}",
    "credentials": {
        "username": "{username}", 
        "password": "{password}"
    }
}
```

alternatively you can provide the mirth instance (ip or domain name) and user/pass combo


```sh
service = MirthService(username="{username}", password="{password}", instance="{mirthInstance}")
```
<a name="Usage"></a>
## Usage

```python
import json
import mirthpy
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) #to supress ssl warning

config = json.load(open('config.json'))

with MirthService(config) as service:

    # Get channel names
    namesAndIds = service.getChannelIdsAndNames()
    for ni in namesAndIds.entry:
        print(f"{ni.string[1]} - {ni.string[0]}") # channelName - channelId

    # Get Id by name
    id = service.getChannelIdByName('Test Channel')

    channel = service.getChannel(id)

    print(channel.name)
    print(channel.description)
    print(channel.sourceConnector.transformer)

    if type(channel.sourceConnector.properties) == JavaScriptReceiverProperties:
        # do stuff we'd know only a javascript reader would have
        script = channel.sourceConnector.properties.script

    # Get multiple channels
    channelIds = ["44dacc20-718a-490c-bfcf-82355ed9209d", "3bb08639-7725-4b1b-a2ac-13687101fe9b"]
    c = service.getChannels(channelIds)

    for channel in c.channels: print(channel.name)


    # Get all channels
    channels = service.getChannels()

    for channel in channels.channels:
        print(f"{channel.name} - {channel.description}")


    # get all enabled channels
    enabledChannels = [channel for channel in channels.channels if channel.exportData.metadata.enabled == 'true']

    # get only javascript readers
    jReaders = [channel for channel in enabledChannels if type(channel.sourceConnector.properties) == JavaScriptReceiverProperties]

    # get certain code templates
    codeTemplates = service.getCodeTemplates(['0d42f17b-54a4-40c1-8e7b-b43c3eb1b433', '37139e86-88db-41fa-bf80-8c08456caa10'])

    for ct in codeTemplates.codeTemplates:
        print(f"{ct.name} - {ct.id}")

    # get all code templates
    codeTemplates = service.getCodeTemplates()

    for ct in codeTemplates.codeTemplates:
        print(f"{ct.name} - {ct.id}")
        code = ct.properties.find('code').text

```
<a name="SupportedCalls"></a>
## Supported Mirth API Calls
### Server Configuration

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `POST /server/_generateGUID` | `service.getGUID()` | Gets Mirth specific GUID for ids |
| `GET /server/about` | `service.getServerAbout` | |
| `GET /server/buildDate` | `service.getServerBuildDate` | |
| `GET /server/channelDependencies` | `service.getChannelDependencies` | |
| `GET /server/channelMetadata` | `service.getChannelMetadata` | |
| `GET /server/channelTags` | `service.getTags()` | Gets all tags |
| `GET /server/charsets` | `service.getServerCharsets` | |
| `GET /server/configurationMap` | `service.getConfigurationMaps()` | Gets all configuration mappings |
| `PUT /server/configurationMap` | `service.putConfigurationMaps(configurationMaps)` | Update all entries in the configuration map. |
| `GET /server/databaseDrivers` | `service.getDatabaseDrivers` | |
| `GET /server/encryption` | `service.getEncryptionSettings` | |
| `GET /server/globalScripts` | `service.getGlobalScripts` | |
| `GET /server/id` | `service.getServerId()` | Gets Mirth Instance Server Id |
| `GET /server/jvm` | `service.getServerJvm` | |
| `GET /server/licenseInfo` | `service.getLicenseInfo` | |
| `GET /server/passwordRequirements` | `service.getPasswordRequirements` | |
| `GET /server/rhinoLanguageVersion` | `service.getRhinoVersion` | |
| `GET /server/settings` | `service.getServerSettings()` | Gets Mirth Server settings |
| `GET /server/status` | `service.getServerStatus` | |
| `GET /server/time` | `service.getTime()` | Gets current Mirth Server time |
| `GET /server/timezone` | `service.getTimezone` | |
| `GET /server/version` | `service.getVersion()` | Gets Mirth Instance version |

### Server Information and Statistics

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /server/info` | `service.getSystemInfo()` | Gets information on underlying system. JvmVersion, OS Name, OS Version, OS Architecture, etc. |
| `GET /server/stats` | `service.getSystemStats()` | Gets statistics for underlying system. Timestamp, cpu usage, allocated memory, etc. |


### Events

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `/events` | `service.getEvents(jsonParams)` | Gets mirth events, can specify what parameters to pass |

### Channel

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `POST /channels` | `service.createChannel(channel, set_time?)` | Creates a channel in mirth instance based on channel object |
| `PUT /channels/{channelId}` | `service.updateChannel(channel, override?, set_time?)` | Updates a channel based off of channel object |
| `DELETE /channels/{channelId}` | `service.deleteChannel(channel, override?)` | Deletes a channel based off of channel id |
| `GET /channels` | `service.getChannels(channelIds?, pollingOnly?, includeCodeTemplates?)` | Get all channels or certain channels in criteria |
| `GET /channels/{channelId}` | `service.getChannel(channelId, includeCodeTemplates)` | Get a single channel |
| `GET /channels/idsAndNames` | `service.getChannelIdsAndNames()` | Get all channel name and ids |
| `GET /channels/idsAndNames` | `service.getChannelIdByName(name)` | Get only the channel id based on channel name |
| `POST /channels/_halt` | `service.haultChannels(channelIds?, returnErrors?)` | Halts a set of channels. |
| `POST /channels/_pause` | `service.pauseChannels(channelIds?, returnErrors?)` | Pauses a set of channels. |
| `POST /channels/_resume` | `service.resumeChannels(channelIds?, returnErrors?)` | Resumes a set of channels. |
| `POST /channels/_start` | `service.startChannels(channelIds?, returnErrors?)` | Starts a set of channels. |
| `POST /channels/_stop` | `service.stopChannels(channelIds?, returnErrors?)` | Stops a set of channels. |
| `POST /channels/{channelId}/_halt` | `service.haultChannel(channelId, returnErrors?)` | Halts a sepecified channels. |
| `POST /channels/{channelId}/_pause` | `service.pauseChannels(channelId, returnErrors?)` | Pauses a sepecified channels. |
| `POST /channels/{channelId}/_resume` | `service.resumeChannels(channelId, returnErrors?)` | Resumes a sepecified channels. |
| `POST /channels/{channelId}/_stop` | `service.stopChannel(channelId)` | Stop specified channel |
| `POST /channels/{channelId}/_start` | `service.startChannel(channelId)` | Start specified channel |
| `POST /channels/_startConnectors` | `service.startConnectors(channelId, metadataIds?, returnErrors?)` | Start connectors based on channel id and metadata id |
| `POST /channels/_stopConnectors` | `service.stopConnectors(channelId, metadataIds?, returnErrors?)` | Stop connectors based on channel id and metadata id |
| `GET /channels/{channelId}/status` | `service.getChannelStatus(channelId)` | Get the status of a channel |
| `GET /channels/statuses` | `service.getChannelStatuses(channelIds?, filter?, includeUndeployed?)` | Get the status of specified channels or all |


### Channel Status

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /channels/statuses` | `service.getChannelStatus(channelIds, filter, includeUndeployed)` | Get Dashboard status of channels |

### Code Template Calls

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /codeTemplates` | `service.getCodeTemplates(codeTemplateIds)` | Get all or some Code Templates  |
| `PUT /codeTemplateLibraries` | `service.putCodeTemplates(codeTemplates, override?)` | Update code template libraries  |
| `PUT /codeTemplates/{codeTemplateId}` | `service.putCodeTemplate(codeTemplateId, codeTemplates, override?)` | Update a code template |


### Message Calls

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /channels/{channelId}/messages` | `service.getMessages(channelId, limit?, includeContent?, offset?, startDate?, endDate?, status?)` | Get messages by channelId with filtering options  |
| `GET /channels/{channelId}/messages/count` | `service.getMessageCount(channelId, startDate?, endDate?, status?)` | Get messages count by channelId with filtering options  |

### Channel Deployment

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `POST /channels/_deploy` | `service.deployChannels(channelIds, returnErrors?)` | Deploy set of channels  |
| `POST /channels/{channelId}/_deploy` | `service.deployChannel(channelId, returnErrors?)` | Deploy a channel  |
| `POST /channels/_undeploy` | `service.undeployChannels(channelIds, returnErrors?)` | Undeploy set of channels  |
| `POST /channels/{channelId}/_undeploy` | `service.undeployChannel(channelId, returnErrors?)` | Undeploy a channel  |
| `POST /channels/_redeployAll` | `service.redeployAllChannels(returnErrors?)` | Redeploy all channels  |

### Channel Statistics

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /channels/statistics` | `service.getChannelStatistics(channelIds, includeUndeployed, includeMetadataId, excludeMetaDataId, aggregateStates)` | Get Channel Statistics  |
| `GET /channels/{channelId}/statistics` | `service.getChannelStatistics(channelIds)` | Get a Channels Statistics  |

### Extensions
| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /extensions/{extensionName}` | `service.getPluginByName(extensionName)` | Get plugin metadata by name  |
| `GET /extensions/{extensionName}/enabled` | `service.isPluginEnabled(extensionName)` | Get whether a plugin is enabled  |
| `GET /extensions/{extensionName}/properties` | `service.getExtensionProperties(extensionName, propertyKeys = [])` | Gets the properties associated with a specific extension  |
| `GET /extensions/connectors` | `service.getConnectors()` | Gets metadata for all active connectors  |
| `GET /extensions/plugins` | `service.getPlugins()` | Gets metadata for all active plugins  |


### Extensions (Commercial License)

| Mirth API Route | mirthpy method | Description                |
| :-------- | :------- | :------------------------- |
| `GET /extensions/history/channels/{channelId}/snapshots` | `service.getChannelHistory(channelId)` | Get Channel History  |
| `GET /extensions/history/channels/{channelId}/snapshots/{snapshotId}` | `service.getSnapshot(channelId, snapshotId)` | Get Channel History Snapshot  |
