@pocinnovation/alumi
Version:
Dynamic pulumi provider for Aleph
245 lines (227 loc) • 6.85 kB
text/typescript
import * as pulumi from '@pulumi/pulumi';
import type { ItemType } from '@aleph-sdk/message';
import { AuthenticatedAlephHttpClient } from '@aleph-sdk/client';
import { getAccount, getAlephExplorerUrl } from './utils';
import type { JSONDict } from './types';
export interface PostInputs {
content: pulumi.Input<JSONDict>;
postType: pulumi.Input<string>;
channel: pulumi.Input<string>;
storageEngine: pulumi.Input<ItemType>;
ref: pulumi.Input<string>; // can be empty
accountEnvName: pulumi.Input<string>;
}
interface PostProviderInputs {
content: JSONDict;
postType: string;
channel: string;
storageEngine: ItemType;
ref: string;
accountEnvName: string;
}
const propContent = 'content';
const propPostType = 'postType';
const propChannel = 'channel';
const propStorageEngine = 'storageEngine';
const propRef = 'ref';
const propAccountEnvName = 'accountEnvName';
export interface PostOutputs {
// inputs
content: JSONDict;
postType: string;
storageEngine: ItemType;
accountEnvName: string;
// outputs
chain: string;
sender: string;
type: string;
channel: string;
signature: string;
time: number;
item_type: string;
item_hash: string;
// Created
content_address: string;
content_type: string;
content_content: JSONDict;
content_time: number;
aleph_explorer_url: string;
}
const PostProvider: pulumi.dynamic.ResourceProvider = {
async diff(id: string, olds: PostOutputs, news: PostProviderInputs) {
const replaces = [];
const changes = [];
if (
JSON.stringify(olds[propContent]) !== JSON.stringify(news[propContent])
) {
changes.push(propContent);
}
if (olds[propPostType] !== news[propPostType]) {
replaces.push(propPostType);
}
if (olds[propChannel] !== news[propChannel]) {
replaces.push(propChannel);
}
if (olds[propStorageEngine] !== news[propStorageEngine]) {
replaces.push(propStorageEngine);
}
if (replaces.length > 0) {
return { replaces: replaces };
} else if (changes.length > 0) {
return { changes: true };
} else {
return { changes: false };
}
},
async update(id: string, olds: PostOutputs, news: PostProviderInputs) {
const inputs = {
content: news[propContent],
postType: 'amend',
channel: news[propChannel],
accountEnvName: news[propAccountEnvName],
storageEngine: news[propStorageEngine],
ref: olds.item_hash,
};
return await this.create(inputs);
},
async delete(id: string, props: PostOutputs) {
const account = await getAccount(props[propAccountEnvName]);
const client = new AuthenticatedAlephHttpClient(account);
await client.forget({
channel: props[propChannel],
hashes: [props.item_hash],
sync: true,
});
},
async create(
inputs: PostProviderInputs
): Promise<pulumi.dynamic.CreateResult<PostOutputs>> {
const account = await getAccount(inputs[propAccountEnvName]);
const client = new AuthenticatedAlephHttpClient(account);
const ref = inputs[propRef] == '' ? undefined : inputs[propRef];
const res = await client.createPost({
content: inputs[propContent],
postType: inputs[propPostType],
channel: inputs[propChannel],
storageEngine: inputs[propStorageEngine],
ref: ref,
sync: true,
});
const out: PostOutputs = {
// inputs
content: inputs[propContent],
postType: inputs[propPostType],
storageEngine: inputs[propStorageEngine],
accountEnvName: inputs[propAccountEnvName],
// outputs
chain: res.chain,
sender: res.sender,
type: `${res.type}`,
channel: res.channel || '',
signature: res.signature,
time: res.time,
item_type: res.item_type,
item_hash: res.item_hash,
// Created
content_address: res.content.address,
content_type: res.content.type,
content_content:
res.content.content !== undefined ? res.content.content : {},
content_time: res.content.time,
aleph_explorer_url: getAlephExplorerUrl(
res.chain,
res.sender,
'POST',
res.item_hash
),
};
return {
id: `${account.address}-${res.item_hash}`,
outs: out,
};
},
async read(id: string, props: PostOutputs) {
const account = await getAccount(props[propAccountEnvName]);
const client = new AuthenticatedAlephHttpClient(account);
const res = await client.getPost({
types: `${props.postType}`,
hashes: [props.item_hash],
});
const out: PostOutputs = {
...props,
chain: res.chain,
sender: res.sender,
type: `${res.type}`,
channel: res.channel || '',
signature: res.signature,
time: res.time,
item_type: res.item_type,
item_hash: res.item_hash,
content_address: res.content.address,
content_type: res.content.type,
content_content: res.content.content,
content_time: res.content.time,
aleph_explorer_url: getAlephExplorerUrl(
res.chain,
res.sender,
'POST',
res.item_hash
),
};
return {
id: id,
outs: out,
};
},
};
export class Post extends pulumi.dynamic.Resource {
// inputs
public readonly content!: pulumi.Output<JSONDict>;
public readonly postType!: pulumi.Output<string>;
public readonly storageEngine!: pulumi.Output<string>;
public readonly accountEnvName!: pulumi.Output<string>;
// outputs
public readonly chain!: pulumi.Output<string>;
public readonly sender!: pulumi.Output<string>;
public readonly type!: pulumi.Output<string>;
public readonly channel!: pulumi.Output<string>;
public readonly signature!: pulumi.Output<string>;
public readonly time!: pulumi.Output<number>;
public readonly item_type!: pulumi.Output<string>;
public readonly item_hash!: pulumi.Output<string>;
// Created
public readonly content_address!: pulumi.Output<string>;
public readonly content_type!: pulumi.Output<string>;
public readonly content_content!: pulumi.Output<JSONDict>;
public readonly content_time!: pulumi.Output<number>;
public readonly aleph_explorer_url!: pulumi.Output<string>;
constructor(
name: string,
props: PostInputs,
opts?: pulumi.CustomResourceOptions
) {
super(
PostProvider,
name,
{
// outputs
chain: undefined,
sender: undefined,
type: undefined,
signature: undefined,
time: undefined,
item_type: undefined,
item_hash: undefined,
// Created
content_address: undefined,
content_type: undefined,
content_content: undefined,
content_time: undefined,
aleph_explorer_url: undefined,
// inputs
...props,
},
opts
);
}
}