hank
2018-04-18 655e6650051a9c08675d15e05ac3b7d9be98e714
commit | author | age
655e66 1 /*
H 2  * Copyright (C) 2017 Twitter, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 /**
19  This header is private to the Twitter Core SDK and not exposed for public SDK consumption
20  */
a0a843 21
H 22 #import <Foundation/Foundation.h>
23
24 NS_ASSUME_NONNULL_BEGIN
25
26 typedef void (^TWTRMultipartFormDocumentLoadDataCallback)(NSData *data);
27
28 @interface TWTRMultipartFormElement : NSObject
29
30 /**
31  * The name of the form element.
32  */
33 @property (nonatomic, copy, readonly) NSString *name;
34
35 /**
36  * The content type of the form element.
37  */
38 @property (nonatomic, copy, readonly) NSString *contentType;
39
40 /**
41  * An optional filename for this element.
42  */
43 @property (nonatomic, copy, readonly, nullable) NSString *fileName;
44
45 /**
46  * The content's data.
47  */
48 @property (nonatomic, copy, readonly) NSData *content;
49
50 /**
51  * Returns a fully initialized form element to be used in a multipart for document.
52  *
53  * @param name the name of the element
54  * @param contentType the elements content type
55  * @param fileName an optional file name
56  * @param content the data associated with this item
57  */
58 - (instancetype)initWithName:(NSString *)name contentType:(NSString *)contentType fileName:(nullable NSString *)fileName content:(NSData *)content NS_DESIGNATED_INITIALIZER;
59
60 - (instancetype)init NS_UNAVAILABLE;
61
62 @end
63
64 /**
65  * A class representing a multipart form document.
66  */
67 @interface TWTRMultipartFormDocument : NSObject
68
69 /**
70  * The forms boundary
71  */
72 @property (nonatomic, copy, readonly) NSString *boundary;
73
74 /**
75  * Returns a value appropriate for the Content-Type header field
76  */
77 @property (nonatomic, copy, readonly) NSString *contentTypeHeaderField;
78
79 /**
80  * Instantiates the document with the given elements.
81  *
82  * @param formElements the elements to append to this document
83  */
84 - (instancetype)initWithFormElements:(NSArray *)formElements NS_DESIGNATED_INITIALIZER;
85
86 /**
87  * Asynchrounously loads the body data.
88  *
89  * @param callbackQueue the queue to invoke the handler on
90  * @param completion the completion block to call with the loaded data.
91  */
92 - (void)loadBodyDataWithCallbackQueue:(dispatch_queue_t)callbackQueue completion:(TWTRMultipartFormDocumentLoadDataCallback)completion;
93
94 @end
95
96 NS_ASSUME_NONNULL_END