identity-service-api: Add sign_invitation_ed25519
This commit is contained in:
parent
5ca2d9eeab
commit
c8f780dbbb
@ -8,7 +8,8 @@ Improvements:
|
|||||||
association::{
|
association::{
|
||||||
check_3pid_validity::v2,
|
check_3pid_validity::v2,
|
||||||
bind_3pid::v2,
|
bind_3pid::v2,
|
||||||
}
|
},
|
||||||
|
invitation::sign_invitation_ed25519::v2
|
||||||
```
|
```
|
||||||
|
|
||||||
# 0.1.0
|
# 0.1.0
|
||||||
|
2
crates/ruma-identity-service-api/src/invitation.rs
Normal file
2
crates/ruma-identity-service-api/src/invitation.rs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
//! Endpoints for ephemeral invitation signing.
|
||||||
|
pub mod sign_invitation_ed25519;
|
@ -0,0 +1,2 @@
|
|||||||
|
//! Endpoint to sign invitation details.
|
||||||
|
pub mod v2;
|
@ -0,0 +1,54 @@
|
|||||||
|
//
|
||||||
|
|
||||||
|
use ruma_api::ruma_api;
|
||||||
|
use ruma_identifiers::{ServerSignatures, UserId};
|
||||||
|
|
||||||
|
ruma_api! {
|
||||||
|
metadata: {
|
||||||
|
description: "Sign invitation details.",
|
||||||
|
method: POST,
|
||||||
|
name: "sign_invitation_ed25519",
|
||||||
|
path: "/_matrix/identity/v2/sign-ed25519",
|
||||||
|
authentication: AccessToken,
|
||||||
|
rate_limited: false,
|
||||||
|
}
|
||||||
|
|
||||||
|
request: {
|
||||||
|
/// The Matrix user ID of the user accepting the invitation.
|
||||||
|
pub mxid: UserId,
|
||||||
|
|
||||||
|
/// The token from the call to store-invite.
|
||||||
|
pub token: &'a str,
|
||||||
|
|
||||||
|
/// The private key, encoded as unpadded base64.
|
||||||
|
pub private_key: &'a str,
|
||||||
|
}
|
||||||
|
|
||||||
|
response: {
|
||||||
|
/// The Matrix user ID of the user accepting the invitation.
|
||||||
|
pub mxid: UserId,
|
||||||
|
|
||||||
|
/// The Matrix user ID of the user who sent the invitation.
|
||||||
|
pub sender: UserId,
|
||||||
|
|
||||||
|
/// The signature of the mxid, sender and token.
|
||||||
|
pub signatures: ServerSignatures,
|
||||||
|
|
||||||
|
/// The token for the invitation.
|
||||||
|
pub token: String,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Request<'a> {
|
||||||
|
/// Creates a `Request` with the given Matrix user ID, token and private_key.
|
||||||
|
pub fn new(mxid: UserId, token: &'a str, private_key: &'a str) -> Self {
|
||||||
|
Self { mxid, token, private_key }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Response {
|
||||||
|
/// Creates a `Response` with the given Matrix user ID, sender user ID, signatures and token.
|
||||||
|
pub fn new(mxid: UserId, sender: UserId, signatures: ServerSignatures, token: String) -> Self {
|
||||||
|
Self { mxid, sender, signatures, token }
|
||||||
|
}
|
||||||
|
}
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
pub mod association;
|
pub mod association;
|
||||||
pub mod authentication;
|
pub mod authentication;
|
||||||
|
pub mod invitation;
|
||||||
pub mod keys;
|
pub mod keys;
|
||||||
pub mod lookup;
|
pub mod lookup;
|
||||||
pub mod status;
|
pub mod status;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user