1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/S3/Objects-management/Init-parts-upload.mdx

148 lines
4.7 KiB
Plaintext
Raw Normal View History

2024-11-21 11:30:08 +03:00
---
sidebar_position: 3
2025-05-05 11:15:20 +03:00
description: Init parts upload and other functions to work with S3 in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, S3]
2024-11-21 11:30:08 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Init parts upload
Initializes the multipart object uploading
2025-08-13 16:57:49 +03:00
`Function InitPartsUpload(Val Name, Val Bucket, Val BasicData, Val Headers = Undefined, Val Directory = False) Export`
2024-11-21 11:30:08 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --name | String | ✔ | Name of the object in the bucket |
| Bucket | --bucket | String | ✔ | Name of the bucket to put the object |
2024-12-29 17:57:09 +03:00
| BasicData | --basic | Structure Of KeyAndValue | ✔ | Basic request data. See GetBasicDataStructure |
2024-11-21 11:30:08 +03:00
| Headers | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
2025-09-01 14:51:24 +03:00
| Directory | --dir | Boolean | ✖ | True > Path style URL, False > Virtual hosted style URL |
2024-11-21 11:30:08 +03:00
2024-12-29 17:57:09 +03:00
Returns: Structure Of KeyAndValue - serialized JSON response from storage
2024-11-21 11:30:08 +03:00
<br/>
:::tip
2024-11-21 13:27:18 +03:00
Method at AWS documentation: [CreateMultipartUpload](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html)
2024-11-22 09:37:00 +03:00
This is a service method. A `PutObject` method is intended for the common scenario of files uploading<br/>Using multipart upload for files &lt; 5 MB or when the size of a single chunk is &lt; 5 MB will result in an error
2024-11-21 11:30:08 +03:00
:::
<br/>
2024-12-16 19:38:57 +03:00
2024-11-21 11:30:08 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
URL = "storage-155.s3hoster.by";
AccessKey = "BRN5RKJE67...";
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
2024-11-21 11:30:08 +03:00
Region = "BTC";
BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
2025-09-01 14:51:24 +03:00
Name = "fileChunked.mp3";
2024-11-21 11:30:08 +03:00
2025-09-01 14:51:24 +03:00
Directory = True; // Formation URL in path-style
Bucket = "opi-dirbucket3";
2025-06-29 14:35:33 +03:00
Entity = "https://hut.openintegrations.dev/test_data/song.mp3"; // URL, Path or Binary Data
2025-04-16 22:15:09 +03:00
Entity = OPI_HTTPRequests.Get(Entity);
2024-11-21 11:30:08 +03:00
2025-09-01 14:51:24 +03:00
Result = OPI_S3.InitPartsUpload(Name, Bucket, BasicData, , Directory);
2024-11-21 11:30:08 +03:00
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
UploadID = Result["response"]["InitiateMultipartUploadResult"]["UploadId"];
TotalSize = Entity.Size();
ChunkSize = 5242880;
BytesRead = 0;
PartNumber = 1;
DataReader = New DataReader(Entity);
SourceStream = DataReader.SourceStream();
TagsArray = New Array;
2024-12-15 15:57:20 +03:00
While BytesRead < TotalSize Do
2024-11-21 11:30:08 +03:00
CurrentReading = DataReader.Read(ChunkSize);
CurrentData = CurrentReading.GetBinaryData();
If CurrentData.Size() = 0 Then
Break;
EndIf;
2025-09-01 14:51:24 +03:00
Result = OPI_S3.UploadObjectPart(Name
, Bucket
, BasicData
, UploadID
, PartNumber
, CurrentData
, Directory);
2024-11-21 11:30:08 +03:00
BytesRead = SourceStream.CurrentPosition();
2024-11-23 10:32:51 +03:00
ETag = Result["headers"]["Etag"];
ETag = ?(ETag = Undefined, Result["headers"]["ETag"], ETag);
TagsArray.Add(ETag);
2024-11-21 11:30:08 +03:00
PartNumber = PartNumber + 1;
EndDo;
2025-09-01 14:51:24 +03:00
Result = OPI_S3.FinishPartsUpload(Name, Bucket, BasicData, UploadID, TagsArray, , Directory);
2024-11-21 11:30:08 +03:00
```
2024-11-22 15:16:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint s3 InitPartsUpload \
--name "fileChunked.mp3" \
2025-09-16 09:07:33 +03:00
--bucket "opi-dirbucket3" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--dir true
2024-11-22 15:16:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint s3 InitPartsUpload ^
--name "fileChunked.mp3" ^
2025-09-16 09:07:33 +03:00
--bucket "opi-dirbucket3" ^
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" ^
--dir true
2024-11-22 15:16:03 +03:00
```
</TabItem>
</Tabs>
```json title="Result"
{
"status": 200,
"response": {
"InitiateMultipartUploadResult": {
2025-09-12 20:23:31 +03:00
"Bucket": "opi-dirbucket3",
2024-11-22 15:16:03 +03:00
"Key": "fileChunked.mp3",
2025-09-16 09:07:33 +03:00
"UploadId": "MDk2NGE5MDUtNDcxZS00ZDljLTkzYjMtODM5ZDM4NGMyMWVhLjg2ZmI0MjM4LTNiYTAtNDE3My1iNGRmLTA0NmQ1YmM3OGJmZQ"
2024-11-22 15:16:03 +03:00
}
},
"headers": {
"Accept-Ranges": "bytes",
2025-09-16 09:07:33 +03:00
"Date": "Mon, 15 Sep 2025 23:16:02 GMT",
2024-11-22 15:16:03 +03:00
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
2025-09-12 20:23:31 +03:00
"Vary": "Origin, Accept-Encoding",
2025-09-16 09:07:33 +03:00
"X-Amz-Id-2": "e602da57d0c30b8c7034fcfe129917205f80f7bab979408e71da5d1441c85e79",
"X-Amz-Request-Id": "186597D2FEC7C465",
2024-11-22 15:16:03 +03:00
"X-Content-Type-Options": "nosniff",
2025-09-12 20:23:31 +03:00
"X-XSS-Protection": "1; mode=block",
"Content-Length": "326",
"Content-Type": "application/xml"
2024-11-22 15:16:03 +03:00
}
}
```