fluence-js/src/internal/particle.ts

86 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-09-28 17:01:49 +03:00
/*
* Copyright 2020 Fluence Labs Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { v4 as uuidv4 } from 'uuid';
import { fromByteArray, toByteArray } from 'base64-js';
2020-12-23 17:24:22 +03:00
import PeerId from 'peer-id';
import { encode } from 'bs58';
import log, { LogLevel } from 'loglevel';
2020-09-28 17:01:49 +03:00
export interface Particle {
2020-12-23 17:24:22 +03:00
id: string;
init_peer_id: string;
timestamp: number;
ttl: number;
script: string;
2020-09-28 17:01:49 +03:00
// sign upper fields
2020-12-23 17:24:22 +03:00
signature: string;
2020-12-24 19:11:10 +03:00
data: Uint8Array;
}
export const logParticle = (fn: Function, message: string, particle: Particle) => {
fn(message, particle);
};
2020-12-24 19:11:10 +03:00
/**
* Represents particle action to send to a node
*/
interface ParticlePayload {
action: 'Particle';
2020-12-24 19:11:10 +03:00
id: string;
init_peer_id: string;
timestamp: number;
ttl: number;
script: string;
signature: number[];
data: string;
2020-09-28 17:01:49 +03:00
}
/**
2020-12-24 19:11:10 +03:00
* Creates an action to send to a node.
2020-09-28 17:01:49 +03:00
*/
export function toPayload(particle: Particle): ParticlePayload {
2020-12-24 19:11:10 +03:00
return {
action: 'Particle',
2020-12-24 19:11:10 +03:00
id: particle.id,
init_peer_id: particle.init_peer_id,
timestamp: particle.timestamp,
ttl: particle.ttl,
script: particle.script,
// TODO: copy signature from a particle after signatures will be implemented on nodes
signature: [],
data: fromByteArray(particle.data),
2020-12-24 19:11:10 +03:00
};
2020-09-28 17:01:49 +03:00
}
export function parseParticle(str: string): Particle {
2020-09-28 17:01:49 +03:00
let json = JSON.parse(str);
return {
id: json.id,
init_peer_id: json.init_peer_id,
timestamp: json.timestamp,
ttl: json.ttl,
script: json.script,
signature: json.signature,
2020-12-24 19:36:38 +03:00
data: toByteArray(json.data),
2020-12-23 17:24:22 +03:00
};
2020-09-28 17:01:49 +03:00
}
export function genUUID() {
return uuidv4();
}