11 releases

new 0.3.0 Apr 18, 2024
0.2.3 Apr 6, 2024
0.2.2 Mar 4, 2024
0.2.1 Dec 5, 2023
0.1.3 Oct 31, 2023

#537 in Cryptography

Download history 29/week @ 2023-12-22 3/week @ 2024-02-16 11/week @ 2024-02-23 129/week @ 2024-03-01 38/week @ 2024-03-08 9/week @ 2024-03-15 24/week @ 2024-03-29 140/week @ 2024-04-05

175 downloads per month
Used in 3 crates (2 directly)

MIT license

84KB
2.5K SLoC

main License: MIT docs.rs

transip

This library crate can be used for calling functions on the Transip Api endpoint. Only part of the api is implemented. The main reason for writing this library is the ability to CRUD dns records for a particular domain. This functionality can be used to respond to DNS01 challenges from the Let's Encrypt servers. This type of challenge is needed to get wildcard certificates.

Example

use transip::{configuration_from_environment, Client, api::general::GeneralApi};

fn main() {
    let mut client = configuration_from_environment()
        .and_then(Client::try_from)
        .expect("No cliënt");

    let pong = client.api_test().expect("api test failed");
    assert_eq!(pong.as_str(), "pong");
}

Environment variables

The following environment variables should be set!.

TRANSIP_API_USERNAME

This is the username used in authentication

Example

export TRANSIP_API_USERNAME=paulusminus

TRANSIP_API_PRIVATE_KEY

This is the name of the file that holds the pem encoded private key used in authentication

Example

export TRANSIP_API_PRIVATE_KEY=/etc/transip/private.pem

TRANSIP_API_READONLY

Can be 'true' or 'false'. If you wan't to prevent accidental modifications set this to 'true'.

Example

export TRANSIP_API_READONLY=false

TRANSIP_API_WHITELISTED_ONLY

Can be 'true' or 'false'. If you wan't to access the api on a whitelisted ipaddress set this to 'true'.

TRANSIP_API_TOKEN_EXPIRATION

Authentication means receiving a token. The interval in which the received will expired can be controlled.

Example 1

export TRANSIP_API_TOKEN_EXPIRATION=5 minutes

Example 2

export TRANSIP_API_TOKEN_EXPIRATION=55 seconds

Example 3

export TRANSIP_API_TOKEN_EXPIRATION=1 hour

TRANSIP_API_LOG_DIR

Directory where the rotating log files are written.

Example

export TRANSIP_API_LOG_DIR=/var/log/transip

TRANSIP_API_TOKEN_PATH

Name of the file where the authentication token received from the endpoint will be written to.

Example

export TRANSIP_API_TOKEN_PATH=/root/.token.txt

Dependencies

~9–41MB
~712K SLoC