2020-01-27 22:23:42 +00:00
|
|
|
import {
|
|
|
|
App,
|
|
|
|
Component,
|
|
|
|
ComponentInternalInstance,
|
|
|
|
VNode,
|
2020-01-29 03:58:02 +00:00
|
|
|
VNodeArrayChildren,
|
2020-01-27 22:23:42 +00:00
|
|
|
createVNode,
|
2020-01-28 23:48:27 +00:00
|
|
|
Text,
|
|
|
|
Comment,
|
|
|
|
Fragment,
|
2020-01-29 03:58:02 +00:00
|
|
|
ssrUtils,
|
2020-02-10 19:37:35 +00:00
|
|
|
Slots,
|
2020-02-18 18:26:15 +00:00
|
|
|
createApp,
|
2020-03-16 19:38:35 +00:00
|
|
|
ssrContextKey,
|
2020-03-16 22:36:19 +00:00
|
|
|
warn,
|
|
|
|
DirectiveBinding,
|
|
|
|
VNodeProps,
|
|
|
|
mergeProps
|
2020-01-27 22:23:42 +00:00
|
|
|
} from 'vue'
|
2020-01-28 23:48:27 +00:00
|
|
|
import {
|
2020-02-14 06:36:42 +00:00
|
|
|
ShapeFlags,
|
2020-01-28 23:48:27 +00:00
|
|
|
isString,
|
|
|
|
isPromise,
|
|
|
|
isArray,
|
|
|
|
isFunction,
|
2020-02-03 23:16:09 +00:00
|
|
|
isVoidTag,
|
2020-02-10 19:37:35 +00:00
|
|
|
escapeHtml,
|
|
|
|
NO,
|
|
|
|
generateCodeFrame
|
2020-01-28 23:48:27 +00:00
|
|
|
} from '@vue/shared'
|
2020-02-10 19:37:35 +00:00
|
|
|
import { compile } from '@vue/compiler-ssr'
|
2020-02-06 17:07:25 +00:00
|
|
|
import { ssrRenderAttrs } from './helpers/ssrRenderAttrs'
|
|
|
|
import { SSRSlots } from './helpers/ssrRenderSlot'
|
2020-02-10 19:37:35 +00:00
|
|
|
import { CompilerError } from '@vue/compiler-dom'
|
2020-03-31 14:52:42 +00:00
|
|
|
import { ssrRenderTeleport } from './helpers/ssrRenderTeleport'
|
2020-01-27 22:23:42 +00:00
|
|
|
|
2020-01-29 03:14:43 +00:00
|
|
|
const {
|
2020-01-29 22:36:06 +00:00
|
|
|
isVNode,
|
2020-01-29 03:14:43 +00:00
|
|
|
createComponentInstance,
|
2020-02-06 04:07:23 +00:00
|
|
|
setCurrentRenderingInstance,
|
2020-01-29 03:14:43 +00:00
|
|
|
setupComponent,
|
|
|
|
renderComponentRoot,
|
2020-03-09 22:20:30 +00:00
|
|
|
normalizeVNode,
|
|
|
|
normalizeSuspenseChildren
|
2020-01-29 03:14:43 +00:00
|
|
|
} = ssrUtils
|
|
|
|
|
2020-01-28 15:46:13 +00:00
|
|
|
// Each component has a buffer array.
|
|
|
|
// A buffer array can contain one of the following:
|
|
|
|
// - plain string
|
|
|
|
// - A resolved buffer (recursive arrays of strings that can be unrolled
|
|
|
|
// synchronously)
|
|
|
|
// - An async buffer (a Promise that resolves to a resolved buffer)
|
2020-02-26 19:59:53 +00:00
|
|
|
export type SSRBuffer = SSRBufferItem[]
|
|
|
|
export type SSRBufferItem =
|
|
|
|
| string
|
|
|
|
| ResolvedSSRBuffer
|
|
|
|
| Promise<ResolvedSSRBuffer>
|
|
|
|
export type ResolvedSSRBuffer = (string | ResolvedSSRBuffer)[]
|
2020-02-15 22:41:20 +00:00
|
|
|
|
2020-02-06 02:04:40 +00:00
|
|
|
export type PushFn = (item: SSRBufferItem) => void
|
2020-02-15 22:41:20 +00:00
|
|
|
|
2020-02-06 02:04:40 +00:00
|
|
|
export type Props = Record<string, unknown>
|
2020-01-27 22:23:42 +00:00
|
|
|
|
2020-02-15 22:41:20 +00:00
|
|
|
export type SSRContext = {
|
|
|
|
[key: string]: any
|
2020-03-31 14:52:42 +00:00
|
|
|
teleports?: Record<string, string>
|
|
|
|
__teleportBuffers?: Record<string, SSRBuffer>
|
2020-02-15 22:41:20 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 19:59:53 +00:00
|
|
|
export function createBuffer() {
|
2020-01-27 22:23:42 +00:00
|
|
|
let appendable = false
|
|
|
|
let hasAsync = false
|
|
|
|
const buffer: SSRBuffer = []
|
|
|
|
return {
|
2020-02-24 16:23:35 +00:00
|
|
|
getBuffer(): ResolvedSSRBuffer | Promise<ResolvedSSRBuffer> {
|
|
|
|
// If the current component's buffer contains any Promise from async children,
|
|
|
|
// then it must return a Promise too. Otherwise this is a component that
|
|
|
|
// contains only sync children so we can avoid the async book-keeping overhead.
|
|
|
|
return hasAsync ? Promise.all(buffer) : (buffer as ResolvedSSRBuffer)
|
2020-01-27 22:23:42 +00:00
|
|
|
},
|
|
|
|
push(item: SSRBufferItem) {
|
|
|
|
const isStringItem = isString(item)
|
|
|
|
if (appendable && isStringItem) {
|
|
|
|
buffer[buffer.length - 1] += item as string
|
|
|
|
} else {
|
|
|
|
buffer.push(item)
|
|
|
|
}
|
|
|
|
appendable = isStringItem
|
|
|
|
if (!isStringItem && !isArray(item)) {
|
|
|
|
// promise
|
|
|
|
hasAsync = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function unrollBuffer(buffer: ResolvedSSRBuffer): string {
|
|
|
|
let ret = ''
|
|
|
|
for (let i = 0; i < buffer.length; i++) {
|
|
|
|
const item = buffer[i]
|
|
|
|
if (isString(item)) {
|
|
|
|
ret += item
|
|
|
|
} else {
|
|
|
|
ret += unrollBuffer(item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2020-02-15 22:41:20 +00:00
|
|
|
export async function renderToString(
|
|
|
|
input: App | VNode,
|
|
|
|
context: SSRContext = {}
|
|
|
|
): Promise<string> {
|
2020-01-30 17:20:23 +00:00
|
|
|
if (isVNode(input)) {
|
2020-02-15 22:41:20 +00:00
|
|
|
// raw vnode, wrap with app (for context)
|
|
|
|
return renderToString(createApp({ render: () => input }), context)
|
2020-01-30 17:20:23 +00:00
|
|
|
}
|
2020-02-15 22:41:20 +00:00
|
|
|
|
2020-02-24 16:23:35 +00:00
|
|
|
// rendering an app
|
|
|
|
const vnode = createVNode(input._component, input._props)
|
|
|
|
vnode.appContext = input._context
|
|
|
|
// provide the ssr context to the tree
|
|
|
|
input.provide(ssrContextKey, context)
|
|
|
|
const buffer = await renderComponentVNode(vnode)
|
|
|
|
|
2020-03-31 14:52:42 +00:00
|
|
|
await resolveTeleports(context)
|
2020-02-15 22:41:20 +00:00
|
|
|
|
2020-01-30 17:20:23 +00:00
|
|
|
return unrollBuffer(buffer)
|
2020-01-27 22:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function renderComponent(
|
2020-01-29 03:58:02 +00:00
|
|
|
comp: Component,
|
2020-01-30 17:09:50 +00:00
|
|
|
props: Props | null = null,
|
2020-02-02 05:05:27 +00:00
|
|
|
children: Slots | SSRSlots | null = null,
|
2020-01-29 03:58:02 +00:00
|
|
|
parentComponent: ComponentInternalInstance | null = null
|
|
|
|
): ResolvedSSRBuffer | Promise<ResolvedSSRBuffer> {
|
|
|
|
return renderComponentVNode(
|
|
|
|
createVNode(comp, props, children),
|
|
|
|
parentComponent
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderComponentVNode(
|
2020-01-28 23:48:27 +00:00
|
|
|
vnode: VNode,
|
2020-01-27 22:23:42 +00:00
|
|
|
parentComponent: ComponentInternalInstance | null = null
|
2020-01-28 15:46:13 +00:00
|
|
|
): ResolvedSSRBuffer | Promise<ResolvedSSRBuffer> {
|
2020-03-30 15:49:51 +00:00
|
|
|
const instance = createComponentInstance(vnode, parentComponent, null)
|
2020-04-06 21:37:47 +00:00
|
|
|
const res = setupComponent(instance, true /* isSSR */)
|
2020-01-27 22:23:42 +00:00
|
|
|
if (isPromise(res)) {
|
2020-03-10 19:28:13 +00:00
|
|
|
return res
|
|
|
|
.catch(err => {
|
2020-03-16 19:38:35 +00:00
|
|
|
warn(`[@vue/server-renderer]: Uncaught error in async setup:\n`, err)
|
2020-03-10 19:28:13 +00:00
|
|
|
})
|
|
|
|
.then(() => renderComponentSubTree(instance))
|
2020-01-27 22:23:42 +00:00
|
|
|
} else {
|
2020-01-29 03:58:02 +00:00
|
|
|
return renderComponentSubTree(instance)
|
2020-01-27 22:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 19:52:15 +00:00
|
|
|
function renderComponentSubTree(
|
|
|
|
instance: ComponentInternalInstance
|
|
|
|
): ResolvedSSRBuffer | Promise<ResolvedSSRBuffer> {
|
|
|
|
const comp = instance.type as Component
|
|
|
|
const { getBuffer, push } = createBuffer()
|
|
|
|
if (isFunction(comp)) {
|
|
|
|
renderVNode(push, renderComponentRoot(instance), instance)
|
|
|
|
} else {
|
|
|
|
if (!instance.render && !comp.ssrRender && isString(comp.template)) {
|
|
|
|
comp.ssrRender = ssrCompile(comp.template, instance)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (comp.ssrRender) {
|
|
|
|
// optimized
|
|
|
|
// set current rendering instance for asset resolution
|
|
|
|
setCurrentRenderingInstance(instance)
|
|
|
|
comp.ssrRender(instance.proxy, push, instance)
|
|
|
|
setCurrentRenderingInstance(null)
|
|
|
|
} else if (instance.render) {
|
|
|
|
renderVNode(push, renderComponentRoot(instance), instance)
|
|
|
|
} else {
|
2020-03-16 19:38:35 +00:00
|
|
|
warn(
|
2020-03-06 19:52:15 +00:00
|
|
|
`Component ${
|
|
|
|
comp.name ? `${comp.name} ` : ``
|
|
|
|
} is missing template or render function.`
|
|
|
|
)
|
2020-03-16 19:38:35 +00:00
|
|
|
push(`<!---->`)
|
2020-03-06 19:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return getBuffer()
|
|
|
|
}
|
|
|
|
|
2020-02-10 19:37:35 +00:00
|
|
|
type SSRRenderFunction = (
|
2020-02-15 22:41:20 +00:00
|
|
|
context: any,
|
2020-02-10 19:37:35 +00:00
|
|
|
push: (item: any) => void,
|
|
|
|
parentInstance: ComponentInternalInstance
|
|
|
|
) => void
|
|
|
|
const compileCache: Record<string, SSRRenderFunction> = Object.create(null)
|
|
|
|
|
|
|
|
function ssrCompile(
|
|
|
|
template: string,
|
|
|
|
instance: ComponentInternalInstance
|
|
|
|
): SSRRenderFunction {
|
|
|
|
const cached = compileCache[template]
|
|
|
|
if (cached) {
|
|
|
|
return cached
|
|
|
|
}
|
|
|
|
|
|
|
|
const { code } = compile(template, {
|
|
|
|
isCustomElement: instance.appContext.config.isCustomElement || NO,
|
|
|
|
isNativeTag: instance.appContext.config.isNativeTag || NO,
|
|
|
|
onError(err: CompilerError) {
|
|
|
|
if (__DEV__) {
|
2020-03-10 19:28:13 +00:00
|
|
|
const message = `[@vue/server-renderer] Template compilation error: ${
|
|
|
|
err.message
|
|
|
|
}`
|
2020-02-10 19:37:35 +00:00
|
|
|
const codeFrame =
|
|
|
|
err.loc &&
|
|
|
|
generateCodeFrame(
|
|
|
|
template as string,
|
|
|
|
err.loc.start.offset,
|
|
|
|
err.loc.end.offset
|
|
|
|
)
|
2020-03-16 19:38:35 +00:00
|
|
|
warn(codeFrame ? `${message}\n${codeFrame}` : message)
|
2020-02-10 19:37:35 +00:00
|
|
|
} else {
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2020-03-06 19:52:15 +00:00
|
|
|
return (compileCache[template] = Function('require', code)(require))
|
2020-01-27 22:23:42 +00:00
|
|
|
}
|
2020-01-27 23:06:37 +00:00
|
|
|
|
2020-01-29 22:36:06 +00:00
|
|
|
function renderVNode(
|
2020-01-28 23:48:27 +00:00
|
|
|
push: PushFn,
|
|
|
|
vnode: VNode,
|
2020-02-15 22:41:20 +00:00
|
|
|
parentComponent: ComponentInternalInstance
|
2020-01-28 23:48:27 +00:00
|
|
|
) {
|
|
|
|
const { type, shapeFlag, children } = vnode
|
|
|
|
switch (type) {
|
|
|
|
case Text:
|
|
|
|
push(children as string)
|
|
|
|
break
|
|
|
|
case Comment:
|
|
|
|
push(children ? `<!--${children}-->` : `<!---->`)
|
|
|
|
break
|
|
|
|
case Fragment:
|
2020-03-13 15:55:04 +00:00
|
|
|
push(`<!--[-->`) // open
|
2020-01-29 03:58:02 +00:00
|
|
|
renderVNodeChildren(push, children as VNodeArrayChildren, parentComponent)
|
2020-03-13 15:55:04 +00:00
|
|
|
push(`<!--]-->`) // close
|
2020-01-28 23:48:27 +00:00
|
|
|
break
|
|
|
|
default:
|
|
|
|
if (shapeFlag & ShapeFlags.ELEMENT) {
|
2020-03-10 19:28:13 +00:00
|
|
|
renderElementVNode(push, vnode, parentComponent)
|
2020-01-28 23:48:27 +00:00
|
|
|
} else if (shapeFlag & ShapeFlags.COMPONENT) {
|
2020-01-29 03:58:02 +00:00
|
|
|
push(renderComponentVNode(vnode, parentComponent))
|
2020-03-31 14:52:42 +00:00
|
|
|
} else if (shapeFlag & ShapeFlags.TELEPORT) {
|
|
|
|
renderTeleportVNode(push, vnode, parentComponent)
|
2020-01-28 23:48:27 +00:00
|
|
|
} else if (shapeFlag & ShapeFlags.SUSPENSE) {
|
2020-03-16 19:38:35 +00:00
|
|
|
renderVNode(
|
|
|
|
push,
|
|
|
|
normalizeSuspenseChildren(vnode).content,
|
|
|
|
parentComponent
|
|
|
|
)
|
2020-01-28 23:48:27 +00:00
|
|
|
} else {
|
2020-03-16 19:38:35 +00:00
|
|
|
warn(
|
2020-01-28 23:48:27 +00:00
|
|
|
'[@vue/server-renderer] Invalid VNode type:',
|
|
|
|
type,
|
|
|
|
`(${typeof type})`
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 02:04:40 +00:00
|
|
|
export function renderVNodeChildren(
|
2020-01-28 23:48:27 +00:00
|
|
|
push: PushFn,
|
2020-01-29 03:58:02 +00:00
|
|
|
children: VNodeArrayChildren,
|
2020-02-15 22:41:20 +00:00
|
|
|
parentComponent: ComponentInternalInstance
|
2020-01-28 23:48:27 +00:00
|
|
|
) {
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
renderVNode(push, normalizeVNode(children[i]), parentComponent)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-10 19:28:13 +00:00
|
|
|
function renderElementVNode(
|
2020-01-28 23:48:27 +00:00
|
|
|
push: PushFn,
|
|
|
|
vnode: VNode,
|
2020-02-15 22:41:20 +00:00
|
|
|
parentComponent: ComponentInternalInstance
|
2020-01-28 23:48:27 +00:00
|
|
|
) {
|
|
|
|
const tag = vnode.type as string
|
2020-03-16 22:36:19 +00:00
|
|
|
let { props, children, shapeFlag, scopeId, dirs } = vnode
|
2020-01-28 23:48:27 +00:00
|
|
|
let openTag = `<${tag}`
|
|
|
|
|
2020-03-18 22:14:51 +00:00
|
|
|
if (dirs) {
|
2020-03-16 22:36:19 +00:00
|
|
|
props = applySSRDirectives(vnode, props, dirs)
|
|
|
|
}
|
2020-01-28 23:48:27 +00:00
|
|
|
|
2020-03-18 22:14:51 +00:00
|
|
|
if (props) {
|
2020-02-06 17:07:25 +00:00
|
|
|
openTag += ssrRenderAttrs(props, tag)
|
2020-01-28 23:48:27 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 22:14:51 +00:00
|
|
|
if (scopeId) {
|
2020-01-28 23:48:27 +00:00
|
|
|
openTag += ` ${scopeId}`
|
|
|
|
const treeOwnerId = parentComponent && parentComponent.type.__scopeId
|
|
|
|
// vnode's own scopeId and the current rendering component's scopeId is
|
|
|
|
// different - this is a slot content node.
|
2020-03-18 22:14:51 +00:00
|
|
|
if (treeOwnerId && treeOwnerId !== scopeId) {
|
2020-01-30 02:13:34 +00:00
|
|
|
openTag += ` ${treeOwnerId}-s`
|
2020-01-28 23:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
push(openTag + `>`)
|
|
|
|
if (!isVoidTag(tag)) {
|
|
|
|
let hasChildrenOverride = false
|
2020-03-18 22:14:51 +00:00
|
|
|
if (props) {
|
2020-01-28 23:48:27 +00:00
|
|
|
if (props.innerHTML) {
|
|
|
|
hasChildrenOverride = true
|
|
|
|
push(props.innerHTML)
|
|
|
|
} else if (props.textContent) {
|
|
|
|
hasChildrenOverride = true
|
2020-01-29 20:10:45 +00:00
|
|
|
push(escapeHtml(props.textContent))
|
2020-01-28 23:48:27 +00:00
|
|
|
} else if (tag === 'textarea' && props.value) {
|
|
|
|
hasChildrenOverride = true
|
2020-01-29 20:10:45 +00:00
|
|
|
push(escapeHtml(props.value))
|
2020-01-28 23:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!hasChildrenOverride) {
|
|
|
|
if (shapeFlag & ShapeFlags.TEXT_CHILDREN) {
|
2020-01-29 20:10:45 +00:00
|
|
|
push(escapeHtml(children as string))
|
2020-01-28 23:48:27 +00:00
|
|
|
} else if (shapeFlag & ShapeFlags.ARRAY_CHILDREN) {
|
2020-01-29 03:58:02 +00:00
|
|
|
renderVNodeChildren(
|
|
|
|
push,
|
|
|
|
children as VNodeArrayChildren,
|
|
|
|
parentComponent
|
|
|
|
)
|
2020-01-28 23:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
push(`</${tag}>`)
|
|
|
|
}
|
2020-01-27 23:06:37 +00:00
|
|
|
}
|
2020-02-15 22:41:20 +00:00
|
|
|
|
2020-03-16 22:36:19 +00:00
|
|
|
function applySSRDirectives(
|
|
|
|
vnode: VNode,
|
|
|
|
rawProps: VNodeProps | null,
|
|
|
|
dirs: DirectiveBinding[]
|
|
|
|
): VNodeProps {
|
|
|
|
const toMerge: VNodeProps[] = []
|
|
|
|
for (let i = 0; i < dirs.length; i++) {
|
|
|
|
const binding = dirs[i]
|
|
|
|
const {
|
|
|
|
dir: { getSSRProps }
|
|
|
|
} = binding
|
|
|
|
if (getSSRProps) {
|
|
|
|
const props = getSSRProps(binding, vnode)
|
|
|
|
if (props) toMerge.push(props)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return mergeProps(rawProps || {}, ...toMerge)
|
|
|
|
}
|
|
|
|
|
2020-03-31 14:52:42 +00:00
|
|
|
function renderTeleportVNode(
|
2020-03-28 00:49:01 +00:00
|
|
|
push: PushFn,
|
2020-02-15 22:41:20 +00:00
|
|
|
vnode: VNode,
|
|
|
|
parentComponent: ComponentInternalInstance
|
|
|
|
) {
|
2020-03-31 14:52:42 +00:00
|
|
|
const target = vnode.props && vnode.props.to
|
2020-03-28 03:45:50 +00:00
|
|
|
const disabled = vnode.props && vnode.props.disabled
|
2020-02-15 22:41:20 +00:00
|
|
|
if (!target) {
|
2020-03-31 14:52:42 +00:00
|
|
|
warn(`[@vue/server-renderer] Teleport is missing target prop.`)
|
2020-02-15 22:41:20 +00:00
|
|
|
return []
|
|
|
|
}
|
|
|
|
if (!isString(target)) {
|
2020-03-16 19:38:35 +00:00
|
|
|
warn(
|
2020-03-31 14:52:42 +00:00
|
|
|
`[@vue/server-renderer] Teleport target must be a query selector string.`
|
2020-02-15 22:41:20 +00:00
|
|
|
)
|
|
|
|
return []
|
|
|
|
}
|
2020-03-31 14:52:42 +00:00
|
|
|
ssrRenderTeleport(
|
2020-02-15 22:41:20 +00:00
|
|
|
push,
|
2020-03-28 00:49:01 +00:00
|
|
|
push => {
|
|
|
|
renderVNodeChildren(
|
|
|
|
push,
|
|
|
|
vnode.children as VNodeArrayChildren,
|
|
|
|
parentComponent
|
|
|
|
)
|
|
|
|
},
|
|
|
|
target,
|
2020-03-28 03:45:50 +00:00
|
|
|
disabled || disabled === '',
|
2020-02-15 22:41:20 +00:00
|
|
|
parentComponent
|
|
|
|
)
|
2020-02-24 16:23:35 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 14:52:42 +00:00
|
|
|
async function resolveTeleports(context: SSRContext) {
|
|
|
|
if (context.__teleportBuffers) {
|
|
|
|
context.teleports = context.teleports || {}
|
|
|
|
for (const key in context.__teleportBuffers) {
|
2020-02-24 16:23:35 +00:00
|
|
|
// note: it's OK to await sequentially here because the Promises were
|
|
|
|
// created eagerly in parallel.
|
2020-03-31 14:52:42 +00:00
|
|
|
context.teleports[key] = unrollBuffer(
|
|
|
|
await Promise.all(context.__teleportBuffers[key])
|
2020-03-28 00:49:01 +00:00
|
|
|
)
|
2020-02-24 16:23:35 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-15 22:41:20 +00:00
|
|
|
}
|