@hashgraph/sdk
Version:
137 lines (121 loc) • 3.7 kB
JavaScript
// SPDX-License-Identifier: Apache-2.0
import FileId from "./FileId.js";
import Timestamp from "../Timestamp.js";
import Long from "long";
import KeyList from "../KeyList.js";
import LedgerId from "../LedgerId.js";
import * as HieroProto from "@hashgraph/proto";
const { proto } = HieroProto;
/**
* Response when the client sends the node CryptoGetInfoQuery.
*/
export default class FileInfo {
/**
* @private
* @param {object} props
* @param {FileId} props.fileId
* @param {Long} props.size
* @param {Timestamp} props.expirationTime
* @param {boolean} props.isDeleted
* @param {KeyList} props.keys
* @param {string} props.fileMemo
* @param {LedgerId|null} props.ledgerId
*/
constructor(props) {
/**
* The ID of the file for which information is requested.
*
* @readonly
*/
this.fileId = props.fileId;
/**
* Number of bytes in contents.
*
* @readonly
*/
this.size = props.size;
/**
* The current time at which this account is set to expire.
*
* @readonly
*/
this.expirationTime = props.expirationTime;
/**
* True if deleted but not yet expired.
*
* @readonly
*/
this.isDeleted = props.isDeleted;
/**
* One of these keys must sign in order to delete the file.
* All of these keys must sign in order to update the file.
*
* @readonly
*/
this.keys = props.keys;
this.fileMemo = props.fileMemo;
this.ledgerId = props.ledgerId;
Object.freeze(this);
}
/**
* @internal
* @param {HieroProto.proto.FileGetInfoResponse.IFileInfo} info
* @returns {FileInfo}
*/
static _fromProtobuf(info) {
const size = /** @type {Long | number} */ (info.size);
return new FileInfo({
fileId: FileId._fromProtobuf(
/** @type {HieroProto.proto.IFileID} */ (info.fileID),
),
size: size instanceof Long ? size : Long.fromValue(size),
expirationTime: Timestamp._fromProtobuf(
/** @type {HieroProto.proto.ITimestamp} */ (
info.expirationTime
),
),
isDeleted: /** @type {boolean} */ (info.deleted),
keys:
info.keys != null
? KeyList.__fromProtobufKeyList(info.keys)
: new KeyList(),
fileMemo: info.memo != null ? info.memo : "",
ledgerId:
info.ledgerId != null
? LedgerId.fromBytes(info.ledgerId)
: null,
});
}
/**
* @internal
* @returns {HieroProto.proto.FileGetInfoResponse.IFileInfo}
*/
_toProtobuf() {
return {
fileID: this.fileId._toProtobuf(),
size: this.size,
expirationTime: this.expirationTime._toProtobuf(),
deleted: this.isDeleted,
keys: this.keys._toProtobufKey().keyList,
memo: this.fileMemo,
ledgerId: this.ledgerId != null ? this.ledgerId.toBytes() : null,
};
}
/**
* @param {Uint8Array} bytes
* @returns {FileInfo}
*/
static fromBytes(bytes) {
return FileInfo._fromProtobuf(
HieroProto.proto.FileGetInfoResponse.FileInfo.decode(bytes),
);
}
/**
* @returns {Uint8Array}
*/
toBytes() {
return proto.FileGetInfoResponse.FileInfo.encode(
this._toProtobuf(),
).finish();
}
}