functions-samples开源项目

我要开发同款
匿名用户2021年12月02日
24阅读
开发技术JavaScript
所属分类Serverless系统、云计算、Serverless 系统
授权协议Apache-2.0 License

作品详情

CloudFunctionsforFirebaseSampleLibrary

ThisrepositorycontainsacollectionofsamplesshowcasingsometypicalusesofCloudFunctionsforFirebase.

AllsamplesusetheNode14runtimeandrequiretheBlazepay-as-you-gobillingplantodeploy.LearnmoreaboutCloudFunctionsforFirebase'sNodeversionshere.

What'sCloudFunctionsforFirebase?

CloudFunctionsisahosted,private,andscalableNode.jsenvironmentwhereyoucanrunJavaScriptcode.CloudFunctionsforFirebaseintegratestheFirebaseplatformbylettingyouwritecodethatrespondstoeventsandinvokesfunctionalityexposedbyotherFirebasefeatures.

Prerequisites

TolearnhowtogetstartedwithCloudFunctionsforFirebasebyhavingalookatourGettingStartedGuide,tryingthequickstartsamplesandlookingatthedocumentation.

SamplesOverview

Thisrepositorycontainsafewcategoriesofsamples:

Quickstartsareminimalexamplesforeachtypesoftriggers.DevelopmentEnvironmentSamplesandBoilerplatesillustrateshowtogetstartedwithdifferent,commonlyusedJavaScriptdevelopmentpatternssuchasTypescript,ReactSSR,ES2017etc...ImageProcessingshowsafewwayswhereyoucanprocessandtransformimagesusingCloudFunctionssuchasgeneratingthumbnails,convertingimagesextractingmetadata...FirebaseRealtimeDatabaseDataConsistencyshowshowtoimplementautomaticdataconsistencysuchaskeepingacountofchildren,havingamaxamountofnodechilds,cleaningupolddataetc...foryourRealtimeDatabase.OthercommonusecasesasetofothercommonusecasesforCloudFunctions.

Quickstarts

HereisasetofminimalsamplesforeachCloudFunctionstriggertypes.

Quickstart:UppercaserforRealtimeDatabaseorFirestore

ThisquickstartsampledemonstratesusingCloudFunctionstriggeredbyFirebaseRealtimeDatabaseorFirestoreevents.ThefunctiontransformsmessagetextwrittentoFirestoretouppercase.

HTTPStriggerquickstart:TimeServer

ThisquickstartsampledemonstratesusingCloudFunctionstriggeredbyHTTPSrequests.Thefunctionreturnsthecurrentservertimeandallowsfordatetimeformatting.

HostingtriggeredHTTPSfunctionquickstart:BigBen

ThisquickstartdemonstratesusingCloudFunctionswithanHTTPStriggerthat'striggeredthroughaFirebaseHostingURL.Thefunctionwilldisplayarepeatednumberof"BONG"sdependingonthehouroftheday.

CloudStoragetriggerquickstart:Thumbnailgenerator

ThisquickstartsampledemonstratesusingCloudFunctionstriggeredbyFirebaseStorageevents.Thefunctiongeneratesathumbnailofuploadedimages.

Authtriggerquickstart:WelcomeEmail

ThisquickstartsampledemonstratesusingCloudFunctionstriggeredbyFirebaseAuthevents.ThefunctionsendsaWelcomeEmailwhenuseraccountsarecreated(orwhenuserssign-inusinganIdentityProviderforthefirsttime)andsendsaGoodbyeEmailwhenuseraccountsaredeleted.

PubSubtriggerquickstart:HelloWorld

ThisquickstartsampledemonstratesusingCloudFunctionstriggeredbyPubSubevents.ThefunctionslogthePubSubpayloadinaHelloworldmessage.

TestLabtriggerquickstart:Logwhenamatrixcompletes

ThisquickstartdemonstrateshowtotriggerafunctioninresponsetothecompletionofatestmatrixinFirebaseTestLab.

DevelopmentBoilerplates

TheFirebaseCLIgeneratessamplecodeforCloudFunctionsusingJavaScriptorTypeScript.

Server-sidegeneratedpagesw/Handlebarstemplatingandusersessions

Thissampleshowshowtoserveserver-sidegeneratedHTMLpagesusingtheHandlebarsJstemplatingsystemandserveuser-specificcontentbyalwayspassingtheFirebaseIDtokenina__sessioncookie.

ImageProcessing

HereareafewsamplesthatshowhowyoucanprocessoranalyzeimagesusingCloudFunctions.

ImageMaker

ThissampledemonstrateshowtocreatevariouscustomizedimagessuchassparklineorspherechartsthroughCloudFunctionsandHostingandserveittotheclient.UsesanHTTPtrigger.

Convertimagesafterupload

DemonstrateshowtoautomaticallyconvertimagesthatareuploadedtoFirebaseStoragetoJPEGusingImageMagick.UsesaFirebaseStoragetrigger.

GenerateimagethumbnailsusingImageMagick

DemonstrateshowtoautomaticallygenerateathumbnailforimagesthatareuploadedtoFirebaseStorageusingImageMagickandgenerateapublicdownloadlinkfortheimages.UsesaFirebaseStoragetrigger.

GenerateimagethumbnailsusingNode.jsStream&Sharp

DemonstrateshowtouseNode.jsStreamtoreadimagefromCloudStorage,generateathumbnailimageusingSharpanduploaditbacktoCloudStorage.UsesaFirebaseStoragetrigger.

Moderateoffensiveimages

DemonstrateshowtoautomaticallymoderateoffensiveimagesthatareuploadedtoFirebaseStoragebyusingtheGoogleCloudVisionAPItodetectoffensiveimagesandImageMagicktoblurtheseimages.UsesaFirebaseStoragetrigger.

Extractimagemetadata

Demonstrateshowtoautomaticallyextractimage'smetadatausingImageMagickforimagesthatareuploadedtoFirebaseStorage.UsesaFirebaseStoragetrigger.

FirebaseRealtimeDatabaseDataConsistency

Thesesamplesshowhowtoimplementautomaticdataconsistencysuchaskeepingacountofchildren,havingamaxamountofnodechilds,cleaningupolddataetc...

LastModifiedFirebaseDatabasetracking

TrackingwhentheFirebaseDatabase(orasubset)waslastmodified.UsesaRealtimeDatabasetrigger.

FirebaseDatabasechildnodescount

KeepstrackofthenumberofchildnodesofaFirebaseDatabaseelementallowingclientstofilterororderresultsusingthechildcount.Thiscanbeusefultokeeptrackofthenumberof"likes"or"followers"ofsomethingsharedthroughsocialmedia.UsesaRealtimeDatabasetrigger.

Limitnumberofchildnodes

Makessurethatthenumberofchildnodesstaysbelowacertainthreshold.Thiscanbeusefultolimitthenumberoflinesoflogsorchathistorybelowagivennumber.UsesaRealtimeDatabasetrigger.

Removingolditemsfromalist

Thissampleshowshowtoremovechildnodesolderthan2hoursfromaFirebaseDatabaselist.Thiscanbeusefulforremovingoutdateditemsfromacollection.UsesaRealtimeDatabasetrigger.

OthercommonusecasesSendFCMnotifications

ThissampledemonstrateshowtosendaFirebaseCloudMessaging(FCM)notificationfromaRealtimeDatabasetriggeredFunctionwhenusersgetnewfollowers.ThesamplealsofeaturesaWebUItoexperiencetheFCMnotification.UsesaRealtimeDatabasetrigger.

GoogleAssistantsaysordinalofgivennumber

ThissampleshowshowtocreateanactionfortheGoogleHome/AssistantusingtheActionsSDKhostedonCloudFunctions.Thesampleactionasksuserstosayanumberandreadsouttheordinalofthatnumber.UsesanHTTPtrigger.

AuthenticatedJSONAPI

ThissampleshowshowtoauthenticateaccesstoaJSONAPItoonlyallowaccesstodataforaspecificFirebaseuser.UsesanHTTPtrigger.

AuthorizedHTTPendpoint

ThissampleshowshowtorestrictanHTTPSFunctiontoonlytheFirebaseusersofyourapp.OnlyuserswhopassavalidFirebaseIDtokenasaBearertokenintheAuthorizationheaderoftheHTTPrequestorina__sessioncookieareauthorizedtousethefunction.CheckingtheIDtokenisdonewithanExpressJsmiddlewarethatalsopassesthedecodedIDtokenintheExpressrequestobject.UsesanHTTPtrigger.

AuthorizewithOkta,LinkedIn,Spotify,Instagram,orBasicAuth

Demonstrateshowtoauthorizewitha3rdpartysign-inmechanism,createaFirebasecustomauthtoken,updatetheuser'sprofileandauthorizeFirebase.UsesanHTTPtrigger.

PostGitHubcommitstoSlackchannel

DemonstrateshowtoautomaticallypostGitHubcommitstoaSlackchannelusinganHTTPStriggeredFunction.

CreateandchargecustomerswithStripeorPaypal

DemonstrateshowstointegrateFirebaseAuthandtheRealtimedatabasewithStripeviatheStripeNode.jslibraryandshowshowtocreateHTTPendpointstochargecustomersviaPaypal.

Textmoderation

Demonstrateshowtomoderateuserinputtextforbadwords.Thiscanbeusedtomoderateusernames,chatorforummessages.UsesaRealtimeDatabasetrigger.

Emailconfirmation

Sendsemailconfirmationafteruserssubscribedtoamailinglist.UsesaRealtimeDatabasetrigger.

Automaticmessagetranslation

IntegratestheGoogleTranslateAPItoperformautomatictexttranslationacrossanynumberoflanguages.LanguagecodescanbestoredinFirebaseforontheflychanges.UsesaRealtimeDatabasetrigger.

AutomaticURLshortener

IntegratestheBit.lyAPItoshortenURLsautomaticallyastheyareaddedtothedatabase.UsesaRealtimeDatabasetrigger.

Full-textsearchforRealtimeDatabaseorFirestore

Enablefull-textsearchonFirebaseDatabasedataorFirestoredocumentsbyusingahostedsearchservice.UsesaRealtimeDatabaseorFirestoretrigger.

Userdatacleanup

DeletesallassociateduserdataintheRealtimedatabasewhenauserdeleteshisFirebaseaccount.UsesanAuthtrigger.Thiscodehasmovedtoitsownrepoathttps://github.com/firebase/user-data-protection

ExportyourdatatoaGoogleSpreadsheet

ThissampledemonstrateshowtosyncnewdatawrittentoaFirebasedatabasetoaGoogleSheet.Itincludesamethodforobtaining,storing,andusingOauth2tokensforGoogleAPIaccess.UsesHTTPStriggersandRealtimeDatabasetriggers.

ExportyourdatatoBigQuery

CopiesFirebaseDatabaseelementsintoBigQueryautomatically.Thiscanbeusefulforinstanceforfurtherlogsanalysis.UsesaRealtimeDatabasetrigger.

WebhookuponFirebaseDatabasewrites

WritingtotheFirebaseDatabasetriggersarequesttoacallbackURL(aWebhook).ThecontentofthemodifiedDataissenttotheWebhook.UsesaRealtimeDatabasetrigger.

Sendasurveywhenusersupdateyourapp

Thissampleshowshowtosendasurveytoyouruserswhohaveupdatedyourapp.AppUpdateisdetectedusingaFirebaseAnalyticsevent.UsesanAnalyticstrigger.

Sendacoupontouserwhohavecompletedapurchase

Thissampleshowshowtosendacoupontoyouruserswhohavejustpurchasedsomething.10%offonyournextpurchase!UsesanAnalyticstrigger.

Deleteinactiveusersaccountsviacron

Periodicallydeletestheaccountsofuserswhohavenotsignedininthelastmonth.UsesanHTTPStrigger.

DeveloperMotivator

ThissampledemonstrateshowtosendaFirebaseCloudMessaging(FCM)notificationtothedeveloperdeviceeachtimeyourappgainsorlosesauser.UsesanAnalyticstrigger.

AudioFilesConversion

Thissampleusesffmpeg/fluent-ffmpegandautomaticallyconvertsaudiofilesthatareuploadedtoCloudStoragetoFLACfileformatwithmono-channelaudio@16000hz.UsesaStoragetrigger.

PresenceforFirestore

Buildasimpleonline/offlinestatusindicatorforyourusersbyleveragingFirestoreandRealtimeDatabasetogether.UsesaRealtimeDatabasetrigger.

PublishModelstoFirebaseML

AutomaticallypublishesmodelstoFirebaseMLforeachTensorFlowLitefilethatisuploadedtoFirebaseStorage.

GetinformationaboutaYouTubechannel

ThissampleshowshowtoquerytheYoutubeDataAPI.UsesanHTTPStrigger.

Contributing

We'dlovethatyoucontributetotheproject.BeforedoingsopleasereadourContributorguide.

License

©Google,2015-2020.LicensedunderanApache-2license.

BuildStatus

查看全文
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论