forked from dasrick/go-teams-notify
-
Notifications
You must be signed in to change notification settings - Fork 17
/
messagecard.go
858 lines (717 loc) · 30.1 KB
/
messagecard.go
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
160
161
162
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
// Copyright 2020 Enrico Hoffmann
// Copyright 2021 Adam Chalkley
//
// https://github.com/atc0005/go-teams-notify
//
// Licensed under the MIT License. See LICENSE file in the project root for
// full license information.
package goteamsnotify
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io"
"strings"
)
/////////////////////////////////////////////////////////////////////////
// NOTE: The contents of this file are deprecated. See the Deprecated
// indicators in this file for intended replacements.
//
// Please submit a bug report if you find exported code in this file which
// does *not* already have a replacement elsewhere in this library.
/////////////////////////////////////////////////////////////////////////
const (
// PotentialActionOpenURIType is the type that must be used for OpenUri
// potential action.
//
// Deprecated: use messagecard.PotentialActionOpenURIType instead.
PotentialActionOpenURIType = "OpenUri"
// PotentialActionHTTPPostType is the type that must be used for HttpPOST
// potential action.
//
// Deprecated: use messagecard.PotentialActionHTTPPostType instead.
PotentialActionHTTPPostType = "HttpPOST"
// PotentialActionActionCardType is the type that must be used for
// ActionCard potential action.
//
// Deprecated: use messagecard.PotentialActionActionCardType instead.
PotentialActionActionCardType = "ActionCard"
// PotentialActionInvokeAddInCommandType is the type that must be used for
// InvokeAddInCommand potential action.
//
// Deprecated: use messagecard.PotentialActionInvokeAddInCommandType
// instead.
PotentialActionInvokeAddInCommandType = "InvokeAddInCommand"
// PotentialActionActionCardInputTextInputType is the type that must be
// used for ActionCard TextInput type.
//
// Deprecated: use messagecard.PotentialActionActionCardInputTextInputType
// instead.
PotentialActionActionCardInputTextInputType = "TextInput"
// PotentialActionActionCardInputDateInputType is the type that must be
// used for ActionCard DateInput type.
//
// Deprecated: use messagecard.PotentialActionActionCardInputDateInputType
// instead.
PotentialActionActionCardInputDateInputType = "DateInput"
// PotentialActionActionCardInputMultichoiceInput is the type that must be
// used for ActionCard MultichoiceInput type.
//
// Deprecated: use
// messagecard.PotentialActionActionCardInputMultichoiceInputType instead.
PotentialActionActionCardInputMultichoiceInput = "MultichoiceInput"
)
// PotentialActionMaxSupported is the maximum number of actions allowed in a
// MessageCardPotentialAction collection.
//
// https://docs.microsoft.com/en-us/outlook/actionable-messages/message-card-reference#actions
//
// Deprecated: use messagecard.PotentialActionMaxSupported instead.
const PotentialActionMaxSupported = 4
// ErrPotentialActionsLimitReached indicates that the maximum supported number
// of potentialAction collection values has been reached for either a
// MessageCard or a MessageCardSection.
//
// Deprecated: use messagecard.ErrPotentialActionsLimitReached instead.
var ErrPotentialActionsLimitReached = errors.New("potential actions collection limit reached")
// MessageCardPotentialAction represents potential actions an user can do in a
// message card. See [Legacy actionable message card reference > Actions] for
// more information.
//
// Deprecated: use messagecard.PotentialAction instead.
//
// [Legacy actionable message card reference > Actions]: https://docs.microsoft.com/en-us/outlook/actionable-messages/message-card-reference#actions
type MessageCardPotentialAction struct {
// Type of the potential action. Can be OpenUri, HttpPOST, ActionCard or
// InvokeAddInCommand.
Type string `json:"@type"`
// Name property defines the text that will be displayed on screen for the
// action.
Name string `json:"name"`
// MessageCardPotentialActionOpenURI is a set of options for openUri
// potential action.
MessageCardPotentialActionOpenURI
// MessageCardPotentialActionHTTPPOST is a set of options for httpPOST
// potential action.
MessageCardPotentialActionHTTPPOST
// MessageCardPotentialActionActionCard is a set of options for actionCard
// potential action.
MessageCardPotentialActionActionCard
// MessageCardPotentialActionInvokeAddInCommand is a set of options for
// invokeAddInCommand potential action.
MessageCardPotentialActionInvokeAddInCommand
}
// MessageCardPotentialActionOpenURI represents a OpenUri potential action.
//
// Deprecated: use messagecard.PotentialActionOpenURI instead.
type MessageCardPotentialActionOpenURI struct {
// Targets is a collection of name/value pairs that defines one URI per
// target operating system. Only used for OpenUri action type.
Targets []MessageCardPotentialActionOpenURITarget `json:"targets,omitempty"`
}
// MessageCardPotentialActionHTTPPOST represents a HttpPOST potential action.
//
// Deprecated: use messagecard.PotentialActionHTTPPOST instead.
type MessageCardPotentialActionHTTPPOST struct {
// Target defines the URL endpoint of the service that implements the
// action. Only used for HttpPOST action type.
Target string `json:"target,omitempty"`
// Headers is a collection of MessageCardPotentialActionHeader objects
// representing a set of HTTP headers that will be emitted when sending
// the POST request to the target URL. Only used for HttpPOST action type.
Headers []MessageCardPotentialActionHTTPPOSTHeader `json:"headers,omitempty"`
// Body is the body of the POST request. Only used for HttpPOST action
// type.
Body string `json:"body,omitempty"`
// BodyContentType is optional and specifies the MIME type of the body in
// the POST request. Only used for HttpPOST action type.
BodyContentType string `json:"bodyContentType,omitempty"`
}
// MessageCardPotentialActionActionCard represents an actionCard potential
// action.
//
// Deprecated: use messagecard.PotentialActionActionCard instead.
type MessageCardPotentialActionActionCard struct {
// Inputs is a collection of inputs an user can provide before processing
// the actions. Only used for ActionCard action type. Three types of
// inputs are available: TextInput, DateInput and MultichoiceInput
Inputs []MessageCardPotentialActionActionCardInput `json:"inputs,omitempty"`
// Actions are the available actions. Only used for ActionCard action
// type.
Actions []MessageCardPotentialActionActionCardAction `json:"actions,omitempty"`
}
// MessageCardPotentialActionActionCardAction is used for configuring
// ActionCard actions.
//
// Deprecated: use messagecard.PotentialActionActionCardAction
// instead.
type MessageCardPotentialActionActionCardAction struct {
// Type of the action. Can be OpenUri, HttpPOST, ActionCard or
// InvokeAddInCommand.
Type string `json:"@type"`
// Name property defines the text that will be displayed on screen for the
// action.
Name string `json:"name"`
// MessageCardPotentialActionOpenURI is used to specify a openUri action
// card's action.
MessageCardPotentialActionOpenURI
// MessageCardPotentialActionHTTPPOST is used to specify a httpPOST action
// card's action.
MessageCardPotentialActionHTTPPOST
}
// MessageCardPotentialActionInvokeAddInCommand represents an
// invokeAddInCommand potential action.
//
// Deprecated: use messagecard.PotentialActionInvokeAddInCommand
// instead.
type MessageCardPotentialActionInvokeAddInCommand struct {
// AddInID specifies the add-in ID of the required add-in. Only used for
// InvokeAddInCommand action type.
AddInID string `json:"addInId,omitempty"`
// DesktopCommandID specifies the ID of the add-in command button that
// opens the required task pane. Only used for InvokeAddInCommand action
// type.
DesktopCommandID string `json:"desktopCommandId,omitempty"`
// InitializationContext is an optional field which provides developers a
// way to specify any valid JSON object. The value is serialized into a
// string and made available to the add-in when the action is executed.
// This allows the action to pass initialization data to the add-in. Only
// used for InvokeAddInCommand action type.
InitializationContext interface{} `json:"initializationContext,omitempty"`
}
// MessageCardPotentialActionOpenURITarget is used for OpenUri action type.
// It defines one URI per target operating system.
//
// Deprecated: use messagecard.PotentialActionOpenURITarget
// instead.
type MessageCardPotentialActionOpenURITarget struct {
// OS defines the operating system the target uri refers to. Supported
// operating system values are default, windows, iOS and android. The
// default operating system will in most cases simply open the URI in a
// web browser, regardless of the actual operating system.
OS string `json:"os,omitempty"`
// URI defines the URI being called.
URI string `json:"uri,omitempty"`
}
// MessageCardPotentialActionHTTPPOSTHeader defines a HTTP header used for
// HttpPOST action type.
//
// Deprecated: use messagecard.PotentialActionHTTPPOSTHeader
// instead.
type MessageCardPotentialActionHTTPPOSTHeader struct {
// Name is the header name.
Name string `json:"name,omitempty"`
// Value is the header value.
Value string `json:"value,omitempty"`
}
// MessageCardPotentialActionActionCardInput represents an ActionCard input.
//
// Deprecated: use messagecard.PotentialActionActionCardInput
// instead.
type MessageCardPotentialActionActionCardInput struct {
// Type of the ActionCard input.
// Must be either TextInput, DateInput or MultichoiceInput
Type string `json:"@type"`
// ID uniquely identifies the input so it is possible to reference it in
// the URL or body of an HttpPOST action.
ID string `json:"id,omitempty"`
// Title defines a title for the input.
Title string `json:"title,omitempty"`
// Value defines the initial value of the input. For multi-choice inputs,
// value must be equal to the value property of one of the input's
// choices.
Value string `json:"value,omitempty"`
// MessageCardPotentialActionInputMultichoiceInput must be defined for
// MultichoiceInput input type.
MessageCardPotentialActionActionCardInputMultichoiceInput
// MessageCardPotentialActionInputTextInput must be defined for InputText
// input type.
MessageCardPotentialActionActionCardInputTextInput
// MessageCardPotentialActionInputDateInput must be defined for DateInput
// input type.
MessageCardPotentialActionActionCardInputDateInput
// IsRequired indicates whether users are required to type a value before
// they are able to take an action that would take the value of the input
// as a parameter.
IsRequired bool `json:"isRequired,omitempty"`
}
// MessageCardPotentialActionActionCardInputTextInput represents a TextInput
// input used for potential action.
//
// Deprecated: use messagecard.PotentialActionActionCardInputTextInput
// instead.
type MessageCardPotentialActionActionCardInputTextInput struct {
// MaxLength indicates the maximum number of characters that can be
// entered.
MaxLength int `json:"maxLength,omitempty"`
// IsMultiline indicates whether the text input should accept multiple
// lines of text.
IsMultiline bool `json:"isMultiline,omitempty"`
}
// MessageCardPotentialActionActionCardInputMultichoiceInput represents a
// MultichoiceInput input used for potential action.
//
// Deprecated: use messagecard.PotentialActionActionCardInputMultichoiceInput
// instead.
type MessageCardPotentialActionActionCardInputMultichoiceInput struct {
// Choices defines the values that can be selected for the multichoice
// input.
Choices []struct {
Display string `json:"display,omitempty"`
Value string `json:"value,omitempty"`
} `json:"choices,omitempty"`
// Style defines the style of the input. When IsMultiSelect is false,
// setting the style property to expanded will instruct the host
// application to try and display all choices on the screen, typically
// using a set of radio buttons.
Style string `json:"style,omitempty"`
// IsMultiSelect indicates whether or not the user can select more than
// one choice. The specified choices will be displayed as a list of
// checkboxes. Default value is false.
IsMultiSelect bool `json:"isMultiSelect,omitempty"`
}
// MessageCardPotentialActionActionCardInputDateInput represents a DateInput
// input used for potential action.
//
// Deprecated: use messagecard.PotentialActionActionCardInputDateInput
// instead.
type MessageCardPotentialActionActionCardInputDateInput struct {
// IncludeTime indicates whether the date input should allow for the
// selection of a time in addition to the date.
IncludeTime bool `json:"includeTime,omitempty"`
}
// MessageCardSectionFact represents a section fact entry that is usually
// displayed in a two-column key/value format.
//
// Deprecated: use messagecard.SectionFact instead.
type MessageCardSectionFact struct {
// Name is the key for an associated value in a key/value pair
Name string `json:"name"`
// Value is the value for an associated key in a key/value pair
Value string `json:"value"`
}
// MessageCardSectionImage represents an image as used by the heroImage and
// images properties of a section.
//
// Deprecated: use messagecard.SectionImage instead.
type MessageCardSectionImage struct {
// Image is the URL to the image.
Image string `json:"image"`
// Title is a short description of the image. Typically, this description
// is displayed in a tooltip as the user hovers their mouse over the
// image.
Title string `json:"title"`
}
// MessageCardSection represents a section to include in a message card.
//
// Deprecated: use messagecard.Section instead.
type MessageCardSection struct {
// Title is the title property of a section. This property is displayed
// in a font that stands out, while not as prominent as the card's title.
// It is meant to introduce the section and summarize its content,
// similarly to how the card's title property is meant to summarize the
// whole card.
Title string `json:"title,omitempty"`
// Text is the section's text property. This property is very similar to
// the text property of the card. It can be used for the same purpose.
Text string `json:"text,omitempty"`
// ActivityImage is a property used to display a picture associated with
// the subject of a message card. For example, this might be the portrait
// of a person who performed an activity that the message card is
// associated with.
ActivityImage string `json:"activityImage,omitempty"`
// ActivityTitle is a property used to summarize the activity associated
// with a message card.
ActivityTitle string `json:"activityTitle,omitempty"`
// ActivitySubtitle is a property used to show brief, but extended
// information about an activity associated with a message card. Examples
// include the date and time the associated activity was taken or the
// handle of a person associated with the activity.
ActivitySubtitle string `json:"activitySubtitle,omitempty"`
// ActivityText is a property used to provide details about the activity.
// For example, if the message card is used to deliver updates about a
// topic, then this property would be used to hold the bulk of the content
// for the update notification.
ActivityText string `json:"activityText,omitempty"`
// HeroImage is a property that allows for setting an image as the
// centerpiece of a message card. This property can also be used to add a
// banner to the message card.
// Note: heroImage is not currently supported by Microsoft Teams
// https://stackoverflow.com/a/45389789
// We use a pointer to this type in order to have the json package
// properly omit this field if not explicitly set.
// https://github.com/golang/go/issues/11939
// https://stackoverflow.com/questions/18088294/how-to-not-marshal-an-empty-struct-into-json-with-go
// https://stackoverflow.com/questions/33447334/golang-json-marshal-how-to-omit-empty-nested-struct
HeroImage *MessageCardSectionImage `json:"heroImage,omitempty"`
// Facts is a collection of MessageCardSectionFact values. A section entry
// usually is displayed in a two-column key/value format.
Facts []MessageCardSectionFact `json:"facts,omitempty"`
// Images is a property that allows for the inclusion of a photo gallery
// inside a section.
// We use a slice of pointers to this type in order to have the json
// package properly omit this field if not explicitly set.
// https://github.com/golang/go/issues/11939
// https://stackoverflow.com/questions/18088294/how-to-not-marshal-an-empty-struct-into-json-with-go
// https://stackoverflow.com/questions/33447334/golang-json-marshal-how-to-omit-empty-nested-struct
Images []*MessageCardSectionImage `json:"images,omitempty"`
// PotentialActions is a collection of actions for a MessageCardSection.
// This is separate from the actions collection for the MessageCard.
PotentialActions []*MessageCardPotentialAction `json:"potentialAction,omitempty"`
// Markdown represents a toggle to enable or disable Markdown formatting.
// By default, all text fields in a card and its sections can be formatted
// using basic Markdown.
Markdown bool `json:"markdown,omitempty"`
// StartGroup is the section's startGroup property. This property marks
// the start of a logical group of information. Typically, sections with
// startGroup set to true will be visually separated from previous card
// elements.
StartGroup bool `json:"startGroup,omitempty"`
}
// MessageCard represents a legacy actionable message card used via Office 365
// or Microsoft Teams connectors.
//
// Deprecated: use messagecard.MessageCard instead.
type MessageCard struct {
// Required; must be set to "MessageCard"
Type string `json:"@type"`
// Required; must be set to "https://schema.org/extensions"
Context string `json:"@context"`
// Summary is required if the card does not contain a text property,
// otherwise optional. The summary property is typically displayed in the
// list view in Outlook, as a way to quickly determine what the card is
// all about. Summary appears to only be used when there are sections defined
Summary string `json:"summary,omitempty"`
// Title is the title property of a card. is meant to be rendered in a
// prominent way, at the very top of the card. Use it to introduce the
// content of the card in such a way users will immediately know what to
// expect.
Title string `json:"title,omitempty"`
// Text is required if the card does not contain a summary property,
// otherwise optional. The text property is meant to be displayed in a
// normal font below the card's title. Use it to display content, such as
// the description of the entity being referenced, or an abstract of a
// news article.
Text string `json:"text,omitempty"`
// Specifies a custom brand color for the card. The color will be
// displayed in a non-obtrusive manner.
ThemeColor string `json:"themeColor,omitempty"`
// ValidateFunc is a validation function that validates a MessageCard
ValidateFunc func() error `json:"-"`
// Sections is a collection of sections to include in the card.
Sections []*MessageCardSection `json:"sections,omitempty"`
// PotentialActions is a collection of actions for a MessageCard.
PotentialActions []*MessageCardPotentialAction `json:"potentialAction,omitempty"`
// payload is a prepared MessageCard in JSON format for submission or
// pretty printing.
payload *bytes.Buffer `json:"-"`
}
// validatePotentialAction inspects the given *MessageCardPotentialAction
// and returns an error if a value is missing or not known.
func validatePotentialAction(pa *MessageCardPotentialAction) error {
if pa == nil {
return fmt.Errorf("nil MessageCardPotentialAction received")
}
switch pa.Type {
case PotentialActionOpenURIType,
PotentialActionHTTPPostType,
PotentialActionActionCardType,
PotentialActionInvokeAddInCommandType:
default:
return fmt.Errorf("unknown type %s for potential action %s", pa.Type, pa.Name)
}
if pa.Name == "" {
return fmt.Errorf("missing name value for MessageCardPotentialAction")
}
return nil
}
// addPotentialAction adds one or many MessageCardPotentialAction values to a
// PotentialActions collection.
func addPotentialAction(collection *[]*MessageCardPotentialAction, actions ...*MessageCardPotentialAction) error {
for _, a := range actions {
logger.Printf("addPotentialAction: MessageCardPotentialAction received: %+v\n", a)
if err := validatePotentialAction(a); err != nil {
logger.Printf("addPotentialAction: validation failed: %v", err)
return err
}
if len(*collection) > PotentialActionMaxSupported {
logger.Printf("addPotentialAction: failed to add potential action: %v", ErrPotentialActionsLimitReached.Error())
return fmt.Errorf("func addPotentialAction: failed to add potential action: %w", ErrPotentialActionsLimitReached)
}
*collection = append(*collection, a)
}
return nil
}
// AddSection adds one or many additional MessageCardSection values to a
// MessageCard. Validation is performed to reject invalid values with an error
// message.
//
// Deprecated: use (messagecard.MessageCard).AddSection instead.
func (mc *MessageCard) AddSection(section ...*MessageCardSection) error {
for _, s := range section {
logger.Printf("AddSection: MessageCardSection received: %+v\n", s)
// bail if a completely nil section provided
if s == nil {
return fmt.Errorf("func AddSection: nil MessageCardSection received")
}
// Perform validation of all MessageCardSection fields in an effort to
// avoid adding a MessageCardSection with zero value fields. This is
// done to avoid generating an empty sections JSON array since the
// Sections slice for the MessageCard type would technically not be at
// a zero value state. Due to this non-zero value state, the
// encoding/json package would end up including the Sections struct
// field in the output JSON.
// See also https://github.com/golang/go/issues/11939
switch {
// If any of these cases trigger, skip over the `default` case
// statement and add the section.
case s.Images != nil:
case s.Facts != nil:
case s.HeroImage != nil:
case s.StartGroup:
case s.Markdown:
case s.ActivityText != "":
case s.ActivitySubtitle != "":
case s.ActivityTitle != "":
case s.ActivityImage != "":
case s.Text != "":
case s.Title != "":
default:
logger.Println("AddSection: No cases matched, all fields assumed to be at zero-value, skipping section")
return fmt.Errorf("all fields found to be at zero-value, skipping section")
}
logger.Println("AddSection: section contains at least one non-zero value, adding section")
mc.Sections = append(mc.Sections, s)
}
return nil
}
// AddPotentialAction adds one or many MessageCardPotentialAction values to a
// PotentialActions collection on a MessageCard.
//
// Deprecated: use (messagecard.MessageCard).AddPotentialAction instead.
func (mc *MessageCard) AddPotentialAction(actions ...*MessageCardPotentialAction) error {
return addPotentialAction(&mc.PotentialActions, actions...)
}
// Validate validates a MessageCard calling ValidateFunc if defined,
// otherwise, a default validation occurs.
//
// Deprecated: use (messagecard.MessageCard).Validate instead.
func (mc *MessageCard) Validate() error {
if mc.ValidateFunc != nil {
return mc.ValidateFunc()
}
// Falling back to a default implementation
if (mc.Text == "") && (mc.Summary == "") {
// This scenario results in:
// 400 Bad Request
// Summary or Text is required.
return fmt.Errorf("invalid message card: summary or text field is required")
}
return nil
}
// Prepare handles tasks needed to construct a payload from a MessageCard for
// delivery to an endpoint.
//
// Deprecated: use (messagecard.MessageCard).Prepare instead.
func (mc *MessageCard) Prepare() error {
jsonMessage, err := json.Marshal(mc)
if err != nil {
return fmt.Errorf(
"error marshalling MessageCard to JSON: %w",
err,
)
}
switch {
case mc.payload == nil:
mc.payload = &bytes.Buffer{}
default:
mc.payload.Reset()
}
_, err = mc.payload.Write(jsonMessage)
if err != nil {
return fmt.Errorf(
"error updating JSON payload for MessageCard: %w",
err,
)
}
return nil
}
// Payload returns the prepared MessageCard payload. The caller should call
// Prepare() prior to calling this method, results are undefined otherwise.
//
// Deprecated: use (messagecard.MessageCard).Payload instead.
func (mc *MessageCard) Payload() io.Reader {
return mc.payload
}
// PrettyPrint returns a formatted JSON payload of the MessageCard if the
// Prepare() method has been called, or an empty string otherwise.
//
// Deprecated: use (messagecard.MessageCard).PrettyPrint instead.
func (mc *MessageCard) PrettyPrint() string {
if mc.payload != nil {
var prettyJSON bytes.Buffer
_ = json.Indent(&prettyJSON, mc.payload.Bytes(), "", "\t")
return prettyJSON.String()
}
return ""
}
// AddFact adds one or many additional MessageCardSectionFact values to a
// MessageCardSection.
//
// Deprecated: use (messagecard.Section).AddFact instead.
func (mcs *MessageCardSection) AddFact(fact ...MessageCardSectionFact) error {
for _, f := range fact {
logger.Printf("AddFact: MessageCardSectionFact received: %+v\n", f)
if f.Name == "" {
return fmt.Errorf("empty Name field received for new fact: %+v", f)
}
if f.Value == "" {
return fmt.Errorf("empty Value field received for new fact: %+v", f)
}
}
logger.Println("AddFact: section fact contains at least one non-zero value, adding section fact")
mcs.Facts = append(mcs.Facts, fact...)
return nil
}
// AddFactFromKeyValue accepts a key and slice of values and converts them to
// MessageCardSectionFact values.
//
// Deprecated: use (messagecard.Section).AddFactFromKeyValue
// instead.
func (mcs *MessageCardSection) AddFactFromKeyValue(key string, values ...string) error {
// validate arguments
if key == "" {
return errors.New("empty key received for new fact")
}
if len(values) < 1 {
return errors.New("no values received for new fact")
}
fact := MessageCardSectionFact{
Name: key,
Value: strings.Join(values, ", "),
}
// TODO: Explicitly define or use constructor?
// fact := NewMessageCardSectionFact()
// fact.Name = key
// fact.Value = strings.Join(values, ", ")
mcs.Facts = append(mcs.Facts, fact)
// if we made it this far then all should be well
return nil
}
// AddPotentialAction adds one or many MessageCardPotentialAction values to a
// PotentialActions collection on a MessageCardSection. This is separate from
// the actions collection for the MessageCard.
//
// Deprecated: use (messagecard.Section).AddPotentialAction
// instead.
func (mcs *MessageCardSection) AddPotentialAction(actions ...*MessageCardPotentialAction) error {
return addPotentialAction(&mcs.PotentialActions, actions...)
}
// AddImage adds an image to a MessageCard section. These images are used to
// provide a photo gallery inside a MessageCard section.
//
// Deprecated: use (messagecard.Section).AddImage instead.
func (mcs *MessageCardSection) AddImage(sectionImage ...MessageCardSectionImage) error {
for i := range sectionImage {
if sectionImage[i].Image == "" {
return fmt.Errorf("cannot add empty image URL")
}
if sectionImage[i].Title == "" {
return fmt.Errorf("cannot add empty image title")
}
mcs.Images = append(mcs.Images, §ionImage[i])
}
return nil
}
// AddHeroImageStr adds a Hero Image to a MessageCard section using string
// arguments. This image is used as the centerpiece or banner of a message
// card.
//
// Deprecated: use (messagecard.Section).AddHeroImageStr instead.
func (mcs *MessageCardSection) AddHeroImageStr(imageURL string, imageTitle string) error {
if imageURL == "" {
return fmt.Errorf("cannot add empty hero image URL")
}
if imageTitle == "" {
return fmt.Errorf("cannot add empty hero image title")
}
heroImage := MessageCardSectionImage{
Image: imageURL,
Title: imageTitle,
}
// TODO: Explicitly define or use constructor?
// heroImage := NewMessageCardSectionImage()
// heroImage.Image = imageURL
// heroImage.Title = imageTitle
mcs.HeroImage = &heroImage
// our validation checks didn't find any problems
return nil
}
// AddHeroImage adds a Hero Image to a MessageCard section using a
// MessageCardSectionImage argument. This image is used as the centerpiece or
// banner of a message card.
//
// Deprecated: use (messagecard.Section).AddHeroImage instead.
func (mcs *MessageCardSection) AddHeroImage(heroImage MessageCardSectionImage) error {
if heroImage.Image == "" {
return fmt.Errorf("cannot add empty hero image URL")
}
if heroImage.Title == "" {
return fmt.Errorf("cannot add empty hero image title")
}
mcs.HeroImage = &heroImage
// our validation checks didn't find any problems
return nil
}
// NewMessageCard creates a new message card with fields required by the
// legacy message card format already predefined.
//
// Deprecated: use messagecard.NewMessageCard instead.
func NewMessageCard() MessageCard {
// define expected values to meet Office 365 Connector card requirements
// https://docs.microsoft.com/en-us/outlook/actionable-messages/message-card-reference#card-fields
msgCard := MessageCard{
Type: "MessageCard",
Context: "https://schema.org/extensions",
}
return msgCard
}
// NewMessageCardSection creates an empty message card section.
//
// Deprecated: use messagecard.NewMessageCardSection instead.
func NewMessageCardSection() *MessageCardSection {
msgCardSection := MessageCardSection{}
return &msgCardSection
}
// NewMessageCardSectionFact creates an empty message card section fact.
//
// Deprecated: use messagecard.NewMessageCardSectionFact instead.
func NewMessageCardSectionFact() MessageCardSectionFact {
msgCardSectionFact := MessageCardSectionFact{}
return msgCardSectionFact
}
// NewMessageCardSectionImage creates an empty image for use with message card
// section.
//
// Deprecated: use messagecard.NewMessageCardSectionImage instead.
func NewMessageCardSectionImage() MessageCardSectionImage {
msgCardSectionImage := MessageCardSectionImage{}
return msgCardSectionImage
}
// NewMessageCardPotentialAction creates a new MessageCardPotentialAction
// using the provided potential action type and name. The name value defines
// the text that will be displayed on screen for the action. An error is
// returned if invalid values are supplied.
//
// Deprecated: use messagecard.NewMessageCardPotentialAction instead.
func NewMessageCardPotentialAction(potentialActionType string, name string) (*MessageCardPotentialAction, error) {
pa := MessageCardPotentialAction{
Type: potentialActionType,
Name: name,
}
if err := validatePotentialAction(&pa); err != nil {
return nil, err
}
return &pa, nil
}