Search 1.9 billion lines of Odoo code on GitHub

attachment_swift

Author: Camptocamp,Odoo Community Association (OCA)
License: AGPL-3
Branch: 13.0
Repository: muk-it/muk_dms
Dependencies: base_attachment_object_storage
Languages: Python (204, 85.0%), and reStructuredText (36, 15.0%)
Other repositories: ERPLibre/odoo-cloud-platform, GSLabIt/odoo-cloud-platform, MjAbuz/odoo-cloud-platform, NCS-75/odoo-cloud-platform, PCatinean/odoo-cloud-platform, RL-OtherApps/odoo-cloud-platform, TelmoSenseFly/odoo-cloud-platform, Tonow-c2c/odoo-cloud-platform, Wiserby/odoo-cloud-platform, acarmisc/odoo-cloud-platform, acsone/odoo-cloud-platform, agrista/odoo-cloud-platform, akretion/odoo-cloud-platform, ap-wtioit/odoo-cloud-platform, asiellb/odoo-cloud-platform, avoinsystems/odoo-cloud-platform, camptocamp/odoo-cloud-platform, celm1990/odoo-cloud-platform, cialuo/odoo-cloud-platform, difra/odoo-cloud-platform, exosoftware/c2c-odoo-cloud-platform, grindtildeath/odoo-cloud-platform, guewen/odoo-cloud-platform, gurneyalex/odoo-cloud-platform, hibou-io/camptocamp-cloud-platform, ircodoo/odoo-cloud-platform, itsalgeria/odoo-cloud-platform, junariltd/odoo-cloud-platform, leemannd/odoo-cloud-platform, loftwah/odoo-cloud-platform, modoolar/odoo-cloud-platform, mohamed-helmy/odoo-cloud-platform, mudismud/odoo-cloud-platform, oondeo/odoo-cloud-platform, p-tombez/odoo-cloud-platform, pasgou/odoo-cloud-platform, paulpwo/odoo-cloud-platform, royalline1/odoo-cloud-platform, sadeqamin/odoo-cloud-platform, sbidoul/odoo-cloud-platform, sebalix/odoo-cloud-platform, sebastienbeau/odoo-cloud-platform, simahawk/odoo-cloud-platform, sm2x/odoo-cloud-platform, smussie/odoo-cloud-platform, suningwz/odoo-cloud-platform, tate11/odoo-cloud-platform, tirix/odoo-cloud-platform, tschanzt/odoo-cloud-platform, ursais/odoo-cloud-platform-1, vidtsin/odoo-cloud-platform, vrenaville/odoo-cloud-platform, wahello/odoo-cloud-platform, xuanox/odoo-cloud-platform, yvaucher/odoo-cloud-platform, and zakiuu/odoo-cloud-platform

<h1 class="title">Attachments on Swift storage</h1> <p>This addon enable storing attachments (documents and assets) on OpenStack Object Storage (Swift)</p> <a name="configuration"></a> <h2>Configuration</h2> <p>Activate Swift storage:</p> <ul class="simple"> <li>Create or set the system parameter with the key <code>ir_attachment.location</code> with the following value <code>swift</code>.</li> </ul> <p>Configure accesses with environment variables:</p> <ul class="simple"> <li><code>SWIFT_AUTH_URL</code> : URL of the Swift server</li> <li><code>SWIFT_TENANT_NAME</code></li> <li><code>SWIFT_ACCOUNT</code></li> <li><code>SWIFT_PASSWORD</code></li> <li><code>SWIFT_WRITE_CONTAINER</code> : Name of the container to use in the store (created if not existing)</li> </ul> <p>Read-only mode:</p> <p>The container name and the key are stored in the attachment. So if you change the <code>SWIFT_WRITE_CONTAINER</code> or the <code>ir_attachment.location</code>, the existing attachments will still be read on their former container. But as soon as they are written over or new attachments are created, they will be created on the new container or on the other location (db or filesystem). This is a convenient way to be able to read the production attachments on a replication (since you have the credentials) without any risk to alter the production data.</p> <p>This addon must be added in the server wide addons with (<code>--load</code> option):</p> <p><code>--load=web,web_kanban,attachment_swift</code></p> <a name="python-dependencies"></a> <h2>Python Dependencies</h2> <p>This module needs the python-swiftclient and the python-keystoneclient (For auth v2.0) to work. The python-keystoneclient needs the linux package build-essential and python-dev to install properly.</p> <p>The python-swiftclient can be used from the command line, useful to test:</p> <blockquote> export AUTH_VERSION=2.0 export OS_USERNAME={SWIFT_ACCOUNT} export OS_PASSWORD={SWIFT_PASSWORD} export OS_TENANT_NAME={SWIFT_TENANT_NAME} export OS_AUTH_URL=https://auth.cloud.ovh.net/v2.0 swift stat</blockquote> <p>More information at <a class="reference external" href="https://docs.openstack.org/python-swiftclient/latest/cli/index.html#swift-usage">https://docs.openstack.org/python-swiftclient/latest/cli/index.html#swift-usage</a></p>