forked from actframework/actframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRenderCSV.java
More file actions
126 lines (112 loc) · 4.05 KB
/
RenderCSV.java
File metadata and controls
126 lines (112 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package act.view;
/*-
* #%L
* ACT Framework
* %%
* Copyright (C) 2014 - 2017 ActFramework
* %%
* 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.
* #L%
*/
import act.app.ActionContext;
import act.cli.view.CliView;
import act.route.UrlPath;
import act.util.ActContext;
import act.util.PropertySpec;
import org.osgl.$;
import org.osgl.exception.NotAppliedException;
import org.osgl.http.H;
import org.osgl.mvc.result.RenderContent;
import org.osgl.util.S;
import java.io.Writer;
/**
* Render object as CSV
*/
public class RenderCSV extends RenderContent {
private static RenderCSV _INSTANCE = new RenderCSV() {
@Override
public String content() {
Payload payload = payload();
return null == payload.stringContentProducer ? payload.message : payload.stringContentProducer.apply();
}
@Override
public $.Visitor<Writer> contentWriter() {
return payload().contentWriter;
}
@Override
public long timestamp() {
return payload().timestamp;
}
};
private RenderCSV() {
super(H.Format.CSV);
}
public RenderCSV(final Object v, final PropertySpec.MetaInfo spec, final ActContext context) {
super(new $.Visitor<Writer>() {
@Override
public void visit(Writer writer) throws $.Break {
render(writer, v, spec, context);
}
}, H.Format.CSV);
}
public RenderCSV(H.Status status, final Object v, final PropertySpec.MetaInfo spec, final ActContext context) {
super(status, new $.Visitor<Writer>() {
@Override
public void visit(Writer writer) throws $.Break {
render(writer, v, spec, context);
}
}, H.Format.CSV);
}
public static RenderCSV of(final Object v, final PropertySpec.MetaInfo spec, final ActContext context) {
touchPayload().contentWriter(new $.Visitor<Writer>() {
@Override
public void visit(Writer writer) throws $.Break {
render(writer, v, spec, context);
}
});
return _INSTANCE;
}
public static RenderCSV of(H.Status status, final Object v, final PropertySpec.MetaInfo spec, final ActionContext context) {
Payload payload = touchPayload().status(status);
if (context.isLargeResponse()) {
payload.contentWriter(new $.Visitor<Writer>() {
@Override
public void visit(Writer writer) throws $.Break {
render(writer, v, spec, context);
}
});
} else {
payload.stringContentProducer(new $.Func0<String>() {
@Override
public String apply() throws NotAppliedException, $.Break {
S.Buffer buf = S.buffer();
render($.convert(buf).to(Writer.class), v, spec, context);
return buf.toString();
}
});
}
return _INSTANCE;
}
private static void render(Writer writer, Object v, PropertySpec.MetaInfo spec, ActContext context) {
setDownloadHeader(context);
CliView.CSV.render(writer, v, spec, context);
}
private static void setDownloadHeader(ActContext context) {
if (context instanceof ActionContext) {
ActionContext ctx = (ActionContext) context;
UrlPath path = ctx.urlPath();
String fileName = S.concat(S.underscore(path.lastPart()), ".csv");
ctx.resp().contentDisposition(fileName, false);
}
}
}