forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsset.java
More file actions
159 lines (133 loc) · 3.61 KB
/
Copy pathAsset.java
File metadata and controls
159 lines (133 loc) · 3.61 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.jooby;
import static java.util.Objects.requireNonNull;
import java.io.InputStream;
import java.net.URL;
import com.google.common.io.BaseEncoding;
import com.google.common.primitives.Longs;
/**
* Usually a public file/resource like javascript, css, images files, etc...
* An asset consist of content type, stream and last modified since, between others.
*
* @author edgar
* @since 0.1.0
* @see Jooby#assets(String)
*/
public interface Asset {
public class Forwarding implements Asset {
private Asset asset;
public Forwarding(final Asset asset) {
this.asset = requireNonNull(asset, "Asset is required.");
}
@Override
public String etag() {
return asset.etag();
}
@Override
public String name() {
return asset.name();
}
@Override
public String path() {
return asset.path();
}
@Override
public URL resource() {
return asset.resource();
}
@Override
public long length() {
return asset.length();
}
@Override
public long lastModified() {
return asset.lastModified();
}
@Override
public InputStream stream() throws Exception {
return asset.stream();
}
@Override
public MediaType type() {
return asset.type();
}
}
/**
* Examples:
*
* <pre>
* GET /assets/index.js {@literal ->} index.js
* GET /assets/js/index.js {@literal ->} index.js
* </pre>
*
* @return The asset name (without path).
*/
default String name() {
String path = path();
int slash = path.lastIndexOf('/');
return path.substring(slash + 1);
}
/**
* Examples:
*
* <pre>
* GET /assets/index.js {@literal ->} /assets/index.js
* GET /assets/js/index.js {@literal ->} /assets/js/index.js
* </pre>
*
* @return The asset requested path, includes the name.
*/
String path();
/**
* @return URL representing the resource.
*/
URL resource();
/**
* @return Generate a weak Etag using the {@link #path()}, {@link #lastModified()} and
* {@link #length()}.
*/
default String etag() {
StringBuilder b = new StringBuilder(32);
b.append("W/\"");
BaseEncoding b64 = BaseEncoding.base64();
int lhash = resource().hashCode();
b.append(b64.encode(Longs.toByteArray(lastModified() ^ lhash)));
b.append(b64.encode(Longs.toByteArray(length() ^ lhash)));
b.append('"');
return b.toString();
}
/**
* @return Asset size (in bytes) or <code>-1</code> if undefined.
*/
long length();
/**
* @return The last modified date if possible or -1 when isn't.
*/
long lastModified();
/**
* @return The content of this asset.
* @throws Exception If content can't be read it.
*/
InputStream stream() throws Exception;
/**
* @return Asset media type.
*/
MediaType type();
}