blob: a932dbefee22c5208518a0d8cdddbc57484dc3ff [file] [log] [blame]
Andrew Gerrand9fc51642013-09-19 10:55:46 +10001// Copyright 2013 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package present
6
7import (
8 "fmt"
9 "strings"
10)
11
12func init() {
13 Register("iframe", parseIframe)
14}
15
16type Iframe struct {
Russ Cox657575a2020-03-09 22:20:35 -040017 Cmd string // original command from present source
Andrew Gerrand9fc51642013-09-19 10:55:46 +100018 URL string
19 Width int
20 Height int
21}
22
Russ Cox657575a2020-03-09 22:20:35 -040023func (i Iframe) PresentCmd() string { return i.Cmd }
Andrew Gerrand9fc51642013-09-19 10:55:46 +100024func (i Iframe) TemplateName() string { return "iframe" }
25
26func parseIframe(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
27 args := strings.Fields(text)
Dmitri Shuralyovb2104f82019-10-25 12:20:13 -040028 if len(args) < 2 {
29 return nil, fmt.Errorf("incorrect iframe invocation: %q", text)
30 }
Russ Cox657575a2020-03-09 22:20:35 -040031 i := Iframe{Cmd: text, URL: args[1]}
Andrew Gerrand9fc51642013-09-19 10:55:46 +100032 a, err := parseArgs(fileName, lineno, args[2:])
33 if err != nil {
34 return nil, err
35 }
36 switch len(a) {
37 case 0:
38 // no size parameters
39 case 2:
40 if v, ok := a[0].(int); ok {
41 i.Height = v
42 }
43 if v, ok := a[1].(int); ok {
44 i.Width = v
45 }
46 default:
gulyasm608c3b02017-01-15 20:31:16 +000047 return nil, fmt.Errorf("incorrect iframe invocation: %q", text)
Andrew Gerrand9fc51642013-09-19 10:55:46 +100048 }
49 return i, nil
50}