comment.go 10.0 KB
Newer Older
xurime's avatar
xurime 已提交
1
// Copyright 2016 - 2020 The excelize Authors. All rights reserved. Use of
xurime's avatar
xurime 已提交
2 3 4 5 6 7
// this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
//
// Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by
// Microsoft Excel™ 2007 and later. Support save file without losing original
8
// charts of XLSX. This library needs Go version 1.10 or later.
xurime's avatar
xurime 已提交
9

10 11 12
package excelize

import (
13
	"bytes"
14 15
	"encoding/json"
	"encoding/xml"
R
Rad Cirskis 已提交
16
	"fmt"
17 18
	"io"
	"log"
19 20 21 22
	"strconv"
	"strings"
)

xurime's avatar
xurime 已提交
23 24
// parseFormatCommentsSet provides a function to parse the format settings of
// the comment with default value.
25
func parseFormatCommentsSet(formatSet string) (*formatComment, error) {
26 27 28 29
	format := formatComment{
		Author: "Author:",
		Text:   " ",
	}
30
	err := json.Unmarshal([]byte(formatSet), &format)
31
	return &format, err
32 33
}

xurime's avatar
xurime 已提交
34 35
// GetComments retrieves all comments and returns a map of worksheet name to
// the worksheet comments.
36 37
func (f *File) GetComments() (comments map[string][]Comment) {
	comments = map[string][]Comment{}
38
	for n := range f.sheetMap {
39
		if d := f.commentsReader("xl" + strings.TrimPrefix(f.getSheetComments(f.GetSheetIndex(n)), "..")); d != nil {
40 41 42 43 44 45 46 47
			sheetComments := []Comment{}
			for _, comment := range d.CommentList.Comment {
				sheetComment := Comment{}
				if comment.AuthorID < len(d.Authors) {
					sheetComment.Author = d.Authors[comment.AuthorID].Author
				}
				sheetComment.Ref = comment.Ref
				sheetComment.AuthorID = comment.AuthorID
xurime's avatar
xurime 已提交
48 49 50
				if comment.Text.T != nil {
					sheetComment.Text += *comment.Text.T
				}
51 52 53 54 55 56
				for _, text := range comment.Text.R {
					sheetComment.Text += text.T
				}
				sheetComments = append(sheetComments, sheetComment)
			}
			comments[n] = sheetComments
57 58 59 60 61
		}
	}
	return
}

62 63 64 65
// getSheetComments provides the method to get the target comment reference by
// given worksheet index.
func (f *File) getSheetComments(sheetID int) string {
	var rels = "xl/worksheets/_rels/sheet" + strconv.Itoa(sheetID) + ".xml.rels"
xurime's avatar
xurime 已提交
66
	if sheetRels := f.relsReader(rels); sheetRels != nil {
67 68 69 70
		for _, v := range sheetRels.Relationships {
			if v.Type == SourceRelationshipComments {
				return v.Target
			}
71 72 73 74 75
		}
	}
	return ""
}

76
// AddComment provides the method to add comment in a sheet by given worksheet
77 78
// index, cell and format set (such as author and text). Note that the max
// author length is 255 and the max text length is 32512. For example, add a
79 80
// comment in Sheet1!$A$30:
//
81
//    err := f.AddComment("Sheet1", "A30", `{"author":"Excelize: ","text":"This is a comment."}`)
82
//
83 84 85 86 87
func (f *File) AddComment(sheet, cell, format string) error {
	formatSet, err := parseFormatCommentsSet(format)
	if err != nil {
		return err
	}
88
	// Read sheet data.
xurime's avatar
xurime 已提交
89 90 91 92
	xlsx, err := f.workSheetReader(sheet)
	if err != nil {
		return err
	}
93 94 95 96 97 98 99 100 101 102 103
	commentID := f.countComments() + 1
	drawingVML := "xl/drawings/vmlDrawing" + strconv.Itoa(commentID) + ".vml"
	sheetRelationshipsComments := "../comments" + strconv.Itoa(commentID) + ".xml"
	sheetRelationshipsDrawingVML := "../drawings/vmlDrawing" + strconv.Itoa(commentID) + ".vml"
	if xlsx.LegacyDrawing != nil {
		// The worksheet already has a comments relationships, use the relationships drawing ../drawings/vmlDrawing%d.vml.
		sheetRelationshipsDrawingVML = f.getSheetRelationshipsTargetByID(sheet, xlsx.LegacyDrawing.RID)
		commentID, _ = strconv.Atoi(strings.TrimSuffix(strings.TrimPrefix(sheetRelationshipsDrawingVML, "../drawings/vmlDrawing"), ".vml"))
		drawingVML = strings.Replace(sheetRelationshipsDrawingVML, "..", "xl", -1)
	} else {
		// Add first comment for given sheet.
104
		sheetRels := "xl/worksheets/_rels/" + strings.TrimPrefix(f.sheetMap[trimSheetName(sheet)], "xl/worksheets/") + ".rels"
xurime's avatar
xurime 已提交
105 106
		rID := f.addRels(sheetRels, SourceRelationshipDrawingVML, sheetRelationshipsDrawingVML, "")
		f.addRels(sheetRels, SourceRelationshipComments, sheetRelationshipsComments, "")
107 108 109 110
		f.addSheetLegacyDrawing(sheet, rID)
	}
	commentsXML := "xl/comments" + strconv.Itoa(commentID) + ".xml"
	f.addComment(commentsXML, cell, formatSet)
R
Rad Cirskis 已提交
111 112 113 114 115 116 117 118 119
	var colCount int
	for i, l := range strings.Split(formatSet.Text, "\n") {
		if ll := len(l); ll > colCount {
			if i == 0 {
				ll += len(formatSet.Author)
			}
			colCount = ll
		}
	}
120 121 122 123
	err = f.addDrawingVML(commentID, drawingVML, cell, strings.Count(formatSet.Text, "\n")+1, colCount)
	if err != nil {
		return err
	}
xurime's avatar
xurime 已提交
124
	f.addContentTypePart(commentID, "comments")
125
	return err
126 127
}

xurime's avatar
xurime 已提交
128
// addDrawingVML provides a function to create comment as
129
// xl/drawings/vmlDrawing%d.vml by given commit ID and cell.
130 131 132 133 134
func (f *File) addDrawingVML(commentID int, drawingVML, cell string, lineCount, colCount int) error {
	col, row, err := CellNameToCoordinates(cell)
	if err != nil {
		return err
	}
135
	yAxis := col - 1
136
	xAxis := row - 1
137 138 139 140 141 142 143 144 145 146 147 148 149
	vml := f.VMLDrawing[drawingVML]
	if vml == nil {
		vml = &vmlDrawing{
			XMLNSv:  "urn:schemas-microsoft-com:vml",
			XMLNSo:  "urn:schemas-microsoft-com:office:office",
			XMLNSx:  "urn:schemas-microsoft-com:office:excel",
			XMLNSmv: "http://macVmlSchemaUri",
			Shapelayout: &xlsxShapelayout{
				Ext: "edit",
				IDmap: &xlsxIDmap{
					Ext:  "edit",
					Data: commentID,
				},
150
			},
151 152 153 154 155 156 157 158 159 160 161 162
			Shapetype: &xlsxShapetype{
				ID:        "_x0000_t202",
				Coordsize: "21600,21600",
				Spt:       202,
				Path:      "m0,0l0,21600,21600,21600,21600,0xe",
				Stroke: &xlsxStroke{
					Joinstyle: "miter",
				},
				VPath: &vPath{
					Gradientshapeok: "t",
					Connecttype:     "miter",
				},
163
			},
164
		}
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
	}
	sp := encodeShape{
		Fill: &vFill{
			Color2: "#fbfe82",
			Angle:  -180,
			Type:   "gradient",
			Fill: &oFill{
				Ext:  "view",
				Type: "gradientUnscaled",
			},
		},
		Shadow: &vShadow{
			On:       "t",
			Color:    "black",
			Obscured: "t",
		},
		Path: &vPath{
			Connecttype: "none",
		},
		Textbox: &vTextbox{
			Style: "mso-direction-alt:auto",
			Div: &xlsxDiv{
				Style: "text-align:left",
			},
		},
		ClientData: &xClientData{
			ObjectType: "Note",
R
Rad Cirskis 已提交
192 193
			Anchor: fmt.Sprintf(
				"%d, 23, %d, 0, %d, %d, %d, 5",
xurime's avatar
xurime 已提交
194
				1+yAxis, 1+xAxis, 2+yAxis+lineCount, colCount+yAxis, 2+xAxis+lineCount),
R
Rad Cirskis 已提交
195 196 197
			AutoFill: "True",
			Row:      xAxis,
			Column:   yAxis,
198 199 200 201 202 203 204 205 206 207 208
		},
	}
	s, _ := xml.Marshal(sp)
	shape := xlsxShape{
		ID:          "_x0000_s1025",
		Type:        "#_x0000_t202",
		Style:       "position:absolute;73.5pt;width:108pt;height:59.25pt;z-index:1;visibility:hidden",
		Fillcolor:   "#fbf6d6",
		Strokecolor: "#edeaa1",
		Val:         string(s[13 : len(s)-14]),
	}
209 210
	d := f.decodeVMLDrawingReader(drawingVML)
	if d != nil {
211 212 213 214 215 216 217 218 219 220 221 222 223
		for _, v := range d.Shape {
			s := xlsxShape{
				ID:          "_x0000_s1025",
				Type:        "#_x0000_t202",
				Style:       "position:absolute;73.5pt;width:108pt;height:59.25pt;z-index:1;visibility:hidden",
				Fillcolor:   "#fbf6d6",
				Strokecolor: "#edeaa1",
				Val:         v.Val,
			}
			vml.Shape = append(vml.Shape, s)
		}
	}
	vml.Shape = append(vml.Shape, shape)
224
	f.VMLDrawing[drawingVML] = vml
225
	return err
226 227
}

xurime's avatar
xurime 已提交
228 229
// addComment provides a function to create chart as xl/comments%d.xml by
// given cell and format sets.
230
func (f *File) addComment(commentsXML, cell string, formatSet *formatComment) {
231 232 233 234 235 236 237 238
	a := formatSet.Author
	t := formatSet.Text
	if len(a) > 255 {
		a = a[0:255]
	}
	if len(t) > 32512 {
		t = t[0:32512]
	}
239 240 241 242 243 244 245
	comments := f.commentsReader(commentsXML)
	if comments == nil {
		comments = &xlsxComments{
			Authors: []xlsxAuthor{
				{
					Author: formatSet.Author,
				},
246
			},
247
		}
248
	}
249
	defaultFont := f.GetDefaultFont()
250 251 252 253 254
	cmt := xlsxComment{
		Ref:      cell,
		AuthorID: 0,
		Text: xlsxText{
			R: []xlsxR{
255
				{
256 257
					RPr: &xlsxRPr{
						B:  " ",
258
						Sz: &attrValFloat{Val: float64Ptr(9)},
259 260 261
						Color: &xlsxColor{
							Indexed: 81,
						},
262 263
						RFont:  &attrValString{Val: stringPtr(defaultFont)},
						Family: &attrValInt{Val: intPtr(2)},
264
					},
265
					T: a,
266
				},
267
				{
268
					RPr: &xlsxRPr{
269
						Sz: &attrValFloat{Val: float64Ptr(9)},
270 271 272
						Color: &xlsxColor{
							Indexed: 81,
						},
273 274
						RFont:  &attrValString{Val: stringPtr(defaultFont)},
						Family: &attrValInt{Val: intPtr(2)},
275
					},
276
					T: t,
277 278 279 280 281
				},
			},
		},
	}
	comments.CommentList.Comment = append(comments.CommentList.Comment, cmt)
282
	f.Comments[commentsXML] = comments
283 284
}

xurime's avatar
xurime 已提交
285 286
// countComments provides a function to get comments files count storage in
// the folder xl.
287
func (f *File) countComments() int {
288
	c1, c2 := 0, 0
289 290
	for k := range f.XLSX {
		if strings.Contains(k, "xl/comments") {
291
			c1++
292 293
		}
	}
294 295 296 297 298 299 300 301 302
	for rel := range f.Comments {
		if strings.Contains(rel, "xl/comments") {
			c2++
		}
	}
	if c1 < c2 {
		return c2
	}
	return c1
303
}
304 305 306 307

// decodeVMLDrawingReader provides a function to get the pointer to the
// structure after deserialization of xl/drawings/vmlDrawing%d.xml.
func (f *File) decodeVMLDrawingReader(path string) *decodeVmlDrawing {
308 309
	var err error

310 311 312
	if f.DecodeVMLDrawing[path] == nil {
		c, ok := f.XLSX[path]
		if ok {
313 314 315 316 317
			f.DecodeVMLDrawing[path] = new(decodeVmlDrawing)
			if err = f.xmlNewDecoder(bytes.NewReader(namespaceStrictToTransitional(c))).
				Decode(f.DecodeVMLDrawing[path]); err != nil && err != io.EOF {
				log.Printf("xml decode error: %s", err)
			}
318 319 320 321 322
		}
	}
	return f.DecodeVMLDrawing[path]
}

323
// vmlDrawingWriter provides a function to save xl/drawings/vmlDrawing%d.xml
324 325 326 327 328 329 330 331 332 333 334 335 336
// after serialize structure.
func (f *File) vmlDrawingWriter() {
	for path, vml := range f.VMLDrawing {
		if vml != nil {
			v, _ := xml.Marshal(vml)
			f.XLSX[path] = v
		}
	}
}

// commentsReader provides a function to get the pointer to the structure
// after deserialization of xl/comments%d.xml.
func (f *File) commentsReader(path string) *xlsxComments {
337 338
	var err error

339 340 341
	if f.Comments[path] == nil {
		content, ok := f.XLSX[path]
		if ok {
342 343 344 345 346
			f.Comments[path] = new(xlsxComments)
			if err = f.xmlNewDecoder(bytes.NewReader(namespaceStrictToTransitional(content))).
				Decode(f.Comments[path]); err != nil && err != io.EOF {
				log.Printf("xml decode error: %s", err)
			}
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
		}
	}
	return f.Comments[path]
}

// commentsWriter provides a function to save xl/comments%d.xml after
// serialize structure.
func (f *File) commentsWriter() {
	for path, c := range f.Comments {
		if c != nil {
			v, _ := xml.Marshal(c)
			f.saveFileList(path, v)
		}
	}
}