Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

MBS FileMaker Plugin Example Databases

Amazon S3 Upload Picture

All examples are included with download of MBS FileMaker Plugin.

Amazon S3 Upload Picture.fmp12

Overview
Tables 1
Relationships 0
Layouts 1
Scripts 4
Value Lists 0
Custom Functions 0
Custom Menus 33
File Options
Default custom menu set [Standard FileMaker Menus]
Default theme Minimalistisch
When opening file
Minimum allowed version 12.0
Login using Account Name; Account= Admin
Allow user to save password On
Require iOS passcode Off
Show Sign-in fields Off
Switch to layout Off
Hide all toolbars Off
Script triggers
OnFirstWindowOpen Off
OnLastWindowClose Off
OnWindowOpen Off
OnWindowClose Off
OnFileAVPlayerChange Off
OnWindowTransaction Off
Thumbnail Settings
Generate Thumbnails On; Temporary

 

Tables

Table Name
Statistics
Comments
Occurrences in Relationship Graph
CURL Test
4 fields defined, 1 record
CURL Test

Fields

Table Name: CURL Test - 4 Fields
Field Name Type Options Comments On Layouts In Relationships In Scripts In Value Lists
Result Normal, Text Auto-Enter:
  • Allow editing
Validation:
  • Only during data entry
Storage:
  • Repetitions: 1
  • Indexing: None
  • Automatically create indexes as needed
  • Index Language: German
      Image Normal, Binary Auto-Enter:
      • Allow editing
      Validation:
      • Only during data entry
      Storage:
      • Repetitions: 1
          header Normal, Text Auto-Enter:
          • Allow editing
          Validation:
          • Only during data entry
          Storage:
          • Repetitions: 1
          • Indexing: None
          • Automatically create indexes as needed
          • Index Language: German
                  debug Normal, Text Auto-Enter:
                  • Allow editing
                  Validation:
                  • Only during data entry
                  Storage:
                  • Repetitions: 1
                  • Indexing: None
                  • Automatically create indexes as needed
                  • Index Language: German

                      Layout Objects: CURL Test

                      Regular Fields

                      Field Name: CURL Test::Result
                      Field Properties Coordinates Field Format Field Behavior Quick Find
                      • Top: 64 pt
                      • Left: 69 pt
                      • Bottom: 83 pt
                      • Right: 322 pt
                      • Anchoring: Left, Top
                      Field Format:
                      • Edit Box
                      Field Behavior:
                      • Allow field to be entered: In Find mode, In Browse mode
                      • Touch keyboard type: Default for Data Type
                      • Go to next field using: Tab key
                      Yes

                      Field Name: CURL Test::Image
                      Field Properties Coordinates Field Format Field Behavior Quick Find
                      • Top: 90 pt
                      • Left: 69 pt
                      • Bottom: 215 pt
                      • Right: 322 pt
                      • Anchoring: Left, Top
                      Field Format:
                      • Edit Box
                      Field Behavior:
                      • Allow field to be entered: In Find mode, In Browse mode
                      • Touch keyboard type: Default for Data Type
                      • Go to next field using: Tab key
                      No

                      Field Name: CURL Test::debug
                      Field Properties Coordinates Field Format Field Behavior Quick Find
                      • Top: 222 pt
                      • Left: 69 pt
                      • Bottom: 591 pt
                      • Right: 502 pt
                      • Anchoring: Left, Top
                      Field Format:
                      • Edit Box
                      Field Behavior:
                      • Allow field to be entered: In Find mode, In Browse mode
                      • Touch keyboard type: Default for Data Type
                      • Go to next field using: Tab key
                      Yes

                      Buttons

                      Button Properties Coordinates Script/Script Step
                        Type:
                      • Text: Upload JPEG in Container
                      • Top: 90 pt
                      • Left: 333 pt
                      • Bottom: 115 pt
                      • Right: 515 pt
                      • Anchoring: Left, Top
                      Perform Script [ “UploadJPEG” ]

                      Scripts:


                      Button Properties Coordinates Script/Script Step
                        Type:
                      • Text: Delete File in Bucket
                      • Top: 124 pt
                      • Left: 333 pt
                      • Bottom: 149 pt
                      • Right: 515 pt
                      • Anchoring: Left, Top
                      Perform Script [ “Delete File” ]

                      Scripts:


                      Script Hierarchy

                      UploadJPEG
                      Delete File
                      Clear
                      Trace on

                      Next Script: [Delete File]
                      Script Name UploadJPEG
                      Run script with full access privileges Off
                      Siri Shortcut Visible Off
                      Include In Menu Yes
                      Layouts that use this script
                      Scripts that use this script
                        Script Definition
                        Script Steps
                        • #Upload file to Amazon S3
                        • #see https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPOST.html
                        • Set Variable [ $AWSAccessKeyId; Value:"xxx" ]
                        • Set Variable [ $AWSSecretAccessKey; Value:"yyy" ]
                        • Set Variable [ $Region; Value:"eu-central-1" ]
                        • Set Variable [ $Bucketname; Value:"zzz" ]
                        • Set Variable [ $Filename; Value:"test.jpg" ]
                        • Set Variable [ $Service; Value:"s3" ]
                        • Set Variable [ $Verb; Value:"PUT" ]
                        • #Keep those empty for default
                        • Set Variable [ $Domain; Value:"" ]
                        • Set Variable [ $HashedPayload; Value:"" ]
                        • #Mark image as jpeg and permissions are public
                        • Set Variable [ $Headers; Value:"Content-Type: image/jpeg" // ¶x-amz-acl: public-read ]
                        • #Build a path
                        • Set Variable [ $Path; Value:"/" & $BucketName & "/" & MBS( "Text.EncodeURLComponent"; $Filename; "utf8") ]
                        • Set Variable [ $curl; Value:MBS("CURL.New") ]
                        • Set Variable [ $result; Value:MBS("CURL.SetInputFile"; $curl; CURL Test::Image) ]
                        • Set Variable [ $result; Value:MBS("CURL.SetupAWS"; $curl; $AWSAccessKeyId; $AWSSecretAccessKey; $Region; $Service; $Path; $Domain; $Verb; $HashedPayload; $Headers) ]
                        • Set Field [ CURL Test::Result; MBS("CURL.Perform"; $curl) ]
                        • Set Field [ CURL Test::debug; MBS("CURL.GetDebugMessages"; $curl) ]
                        • Set Variable [ $result; Value:MBS("CURL.Release"; $curl) ]
                        Fields used in this script
                        Scripts used in this script
                          Layouts used in this script
                            Tables used in this script
                            Table occurrences used by this script
                            Custom Functions used by this script
                              Custom menu set used by this script

                                Previous Script: [UploadJPEG] Next Script: [Clear]
                                Script Name Delete File
                                Run script with full access privileges Off
                                Siri Shortcut Visible Off
                                Include In Menu Yes
                                Layouts that use this script
                                Scripts that use this script
                                  Script Definition
                                  Script Steps
                                  • #Delete file from Amazon S3
                                  • #see https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectDELETE.html
                                  • Set Variable [ $AWSAccessKeyId; Value:"xxx" ]
                                  • Set Variable [ $AWSSecretAccessKey; Value:"yyy" ]
                                  • Set Variable [ $Region; Value:"eu-central-1" ]
                                  • Set Variable [ $Bucketname; Value:"zzz" ]
                                  • Set Variable [ $Filename; Value:"test.jpg" ]
                                  • Set Variable [ $Service; Value:"s3" ]
                                  • Set Variable [ $Verb; Value:"DELETE" ]
                                  • #Keep those empty for default
                                  • Set Variable [ $Domain; Value:"" ]
                                  • Set Variable [ $HashedPayload; Value:"" ]
                                  • Set Variable [ $Headers; Value:"" ]
                                  • #Build a path
                                  • Set Variable [ $Path; Value:"/" & $BucketName & "/" & MBS( "Text.EncodeURLComponent"; $Filename; "utf8") ]
                                  • Set Variable [ $curl; Value:MBS("CURL.New") ]
                                  • Set Variable [ $result; Value:MBS("CURL.SetupAWS"; $curl; $AWSAccessKeyId; $AWSSecretAccessKey; $Region; $Service; $Path; $Domain; $Verb; $HashedPayload; $Headers) ]
                                  • Set Field [ CURL Test::Result; MBS("CURL.Perform"; $curl) ]
                                  • Set Field [ CURL Test::debug; MBS("CURL.GetDebugMessages"; $curl) ]
                                  • Set Variable [ $result; Value:MBS("CURL.Release"; $curl) ]
                                  • #Reports HTTP Status 204 for deleted file.
                                  Fields used in this script
                                  Scripts used in this script
                                    Layouts used in this script
                                      Tables used in this script
                                      Table occurrences used by this script
                                      Custom Functions used by this script
                                        Custom menu set used by this script

                                          Previous Script: [Delete File] Next Script: [Trace on]
                                          Script Name Clear
                                          Run script with full access privileges Off
                                          Siri Shortcut Visible Off
                                          Include In Menu Yes
                                          Layouts that use this script
                                            Scripts that use this script
                                              Script Definition
                                              Script Steps
                                              • Set Field [ CURL Test::Image; "" ]
                                              • Set Field [ CURL Test::debug; "" ]
                                              • Set Field [ CURL Test::Result; "" ]
                                              Fields used in this script
                                              Scripts used in this script
                                                Layouts used in this script
                                                  Tables used in this script
                                                  Table occurrences used by this script
                                                  Custom Functions used by this script
                                                    Custom menu set used by this script

                                                      Previous Script: [Clear]
                                                      Script Name Trace on
                                                      Run script with full access privileges Off
                                                      Siri Shortcut Visible Off
                                                      Include In Menu Yes
                                                      Layouts that use this script
                                                        Scripts that use this script
                                                          Script Definition
                                                          Script Steps
                                                          • #log plugin calls in DebugView on Windows, Console.app on macOS and logs folder on Linux
                                                          • Set Variable [ $r; Value:MBS("Trace") ]
                                                          Fields used in this script
                                                            Scripts used in this script
                                                              Layouts used in this script
                                                                Tables used in this script
                                                                  Table occurrences used by this script
                                                                    Custom Functions used by this script
                                                                      Custom menu set used by this script

                                                                        Download example: Amazon S3 Upload Picture

                                                                        Used functions: