2024-04-15 - Image upload with HiveAuth On Flutter WebApp

in HiveDevs15 days ago

Hello Hive Community Members,

Welcome to daily updates from @sagarkothari88 - a Hive Witness & mobile-app-developer.

Actively contributing to following projects on Hive

Updates: HiveFreedomDollar

  • Day before yesterday, I talked about how upload an image from Flutter-webapp with @keychain
  • With @keychain, it was very easy. One javascript function does it all.
  • However, with @hiveauth, it's not that straight forward.
  • In this post, I'll illustrate the steps I've taken to upload the image.
  • Please correct me if I'm wrong somewhere.

Background before diving into the code

  • Flutter Web App has the Socket connection of @hiveauth.
  • Only Javascript side of code has crypto utilities. I've tried crypto on dart side but results aren't matching. I'll utilise javascript as much as possible.
  • Only Javascript side of code has proper buffer processing. I've tried dart buffers & have failed. I've also tried AI's suggestion which didn't work. After wasting good amount of time, I decided to utilise javascript side of Buffer feature.

Pseudocode for image upload using hiveauth on flutter webapp

FlutterApp -> JavaScript: OpenImagePicker

note:
- FlutterApp informs JavaScript to open image picker.
- WebApp code - It opens up an image picker.
- User selects file.
- After file is selected, we get buffer of it.
- We get base64 of selected file.
- We prepare buffer to sign
- Buffer to sign - is converted to JSON & JSON to Base64

JavaScript -> FlutterApp: Buffer2SignBase64, FileBase64, file name

note:
- FlutterApp receives Buffer to sign as base64.
- FlutterApp decodes base64 of buffer to sign & obtains JSON
- FlutterApp preserves these 3 values.

FlutterApp -> HiveAuth: Sign Buffer

note:
- FlutterApp sends this data to HiveAuth with a signing challenge request
- In Signing Challenge request, we attach Json of buffer to sign & request to sign with Posting key.

HiveAuth -> FlutterApp: Signed Buffer

note:
- FlutterApp receives signature of buffer to be signed.

FlutterApp -> JavaScript: Signature, Base64 of Image, File Name

note:
- FlutterApp sends signature, base64 of image & file name to JavaScript side of code.
- JavaScript side of code prepares a proper form-data-request after creating file-blob object from given base64.
- JavaScript side of code uploads image

JavaScript -> FlutterApp: Uploaded URL

note:
- JavaScript side of code returns the URL of uploaded image.
- FlutterApp now can use this URL as an attachment in the post.

swimlane diagram

Async function to get Buffer of a File

async function getFileBuffer(file) {
  return new Promise(function (resolve, reject) {
    var reader = new FileReader();
    reader.onload = async () => {
      const content = window.buffer.Buffer.from(reader.result, "binary");
      resolve(content);
    };
    reader.readAsBinaryString(file);
  });
}

Async function to get Base64 of a File

async function getFileBase64(file) {
  return new Promise(function (resolve, reject) {
    const reader = new FileReader();
    reader.readAsDataURL(file);
    reader.onload = () => resolve(reader.result);
    reader.onerror = reject;
  });
}

Getting Data to Sign for HiveAuth after image is selected

async function openImagePickerForWebAppForHiveAuth(id, accountName) {
  return new Promise(function (resolve, reject) {
    var input = document.createElement("input");
    input.type = "file";
    input.onchange = (e) => {
      var file = e.target.files[0];
      getFileBuffer(file).then((content) => {
        getFileBase64(file).then((base64) => {
          const prefix = window.buffer.Buffer.from(
            "ImageSigningChallenge"
          );
          const buf = window.buffer.Buffer.concat([prefix, content]);
          // we are converting it to base64 
          // to avoid double-json-encoding-decoding failures.
          const bufJsonBase64 = btoa(JSON.stringify(buf));
          let retResp = JSON.stringify({
            id: id,
            valid: true,
            accountName: accountName,
            data: {
              bufJsonBase64: bufJsonBase64,
              base64: base64,
              fileName: file.name,
            },
          });
          resolve(retResp);
        });
      });
    };
    input.click();
  });
}
  • So, From the given swimlane diagram, I was able to only complete step 1 & step 2.
  • I am yet working on Step 3 - get buffer signed by @HiveAuth
  • As soon as I'm done with everything, I'll update this post.

Updates: HiveCurators - DiscordBot

  • HiveCurators - DiscordBot is doing well
  • No outages were reported
  • HiveCurators With DiscordBot was able to successfully curate approximately 49 posts today.
  • Curation report is added below in the post
  • I've staked ALIVE.
  • Those who read my post & reply, I'll reward them with Alive & Pizza tokens.
  • Those who reply to curation comments, they will be randomly rewarded with Alive token & Pizza tokens.
  • To these users, @himalayanwomb, @thebigsweed, @irvet, @jlufer, @saranegi, I sent 0.05 Hive Power - to reward them for their contribution on Hive Communities.
  • Here is the screenshot, from Ecency Wallet, indicating the same.

Updates: Video Encoder Nodes

  • I'm running 12 powerful video encoder nodes for 3Speak Community Members.
  • Monthly internet bandwidth usage which exceeds 15 TB, Maintenance cost, Electricity backup, Internet backup, Depreciation cost - it's all on me.
  • Yesterday (14-Apr-2024) 3Speak published total 139 videos
  • My video encoder nodes encoded 110 videos from 139 videos published.

sagars encoded videos

total encoded videos

How is @sagarKothari88 doing?

  • Today, I went to out to find new pre-schools for my son.
  • I find this school decent & nearby.
  • I asked as much as possible & found satisfactory answers.
  • But I insisted on trying out the school for a month & to convince them about this idea, I suggested to give us options for summer camp.
  • Except that, Today, most of my time spent in solving @hiveuath related challenges in current project.

Curation Report

NOTE: If you don't like tagging you under curation report, let me know in comment section & I'll exclude you from the curation report.

AuthorPostWeight
@yogeshbhatt@yogeshbhatt/today-was-the-3rd-day20 %
@miingjazz@miingjazz/another-one-of-my-experiences21 %
@faniaviera@faniaviera/decepciones-amorosas-amorous-deceptions20 %
@mad-runner@mad-runner/battle-mage-secrets-weekly-challenge-0e863defefc2c24 %
@luca1777@luca1777/big-lake-wannsee-in-the-southwest-of-berlin24 %
@adelepazani@adelepazani/the-hot-heat-of-the-sun-by-the-south-sea-is-wonderful-happy-hours-with-the-southern-boy24 %
@neilamarcano@neilamarcano/aayykdmf20 %
@romeskie@romeskie/pranks26 %
@melinda010100@melinda010100/brown-pelicans40 %
@carisma77@carisma77/exquisite-salty-cheese-cake-exquisito20 %
@michupa@michupa/japanese-food-night-enpt29 %
@crazyphantombr@crazyphantombr/en-pt-fast-furious-and23 %
@pirulito.zoado@pirulito.zoado/battle-mage-secrets-engpt-br-splinterlands-ruleset-five-alive21 %
@hive-world@hive-world/my-first-encounter-night-with20 %
@maydelvalle@maydelvalle/un-domingo-sin-color20 %
@mercmarg@mercmarg/14-april-2024-mariannewests-freewrite-writing-prompt-day-2342-bathtub-of-tears-engesp20 %
@builderofcastles@builderofcastles/the-grand-unified-theory-has-been-elusive-because-modern-molecular-science-is-wrong24 %
@brujita18@brujita18/mom-proud-of-emanuel-en21 %
@kingsleyy@kingsleyy/if-dreams-are-real21 %
@yetsimar@yetsimar/ruben-se-roba-las-camaras22 %
@schumix05@schumix05/battle-mage-secrets-challenge-five-alive-deeng21 %
@takhar@takhar/productivity-and-creativity20 %
@libertycrypto27@libertycrypto27/its-time-to-assemble-my-new-desktop-pc-step-one-choosing-components-to-purchase-engita40 %
@mcookies@mcookies/clasical-music-week-20120 %
@crisch23@crisch23/weekend-to-eat-ice-cream-with-the-family24 %
@andyjaypowell@andyjaypowell/trip-to-wurzburg40 %
@sperosamuel15@sperosamuel15/cleanliness-should-be-our-culture20 %
@vaynard86@vaynard86/battle-mage-secrets-five-alive-keeping-it-simple25 %
@genming@genming/battle-mage-secrets-weekly-challenge-five-alive-ruleset20 %
@eliaschess333@eliaschess333/no-solo-es-suficiente-con-manipular-velocidad-la-magia-me-sorprende-en-un-five-alive-battle-mage-secrets21 %
@arbalestarx7@arbalestarx7/battle-mage-secrets-weekly-challenge-a7e68bf8006af20 %
@javivisan@javivisan/battle-mage-secrets-weekly-challenge-five-alive-en-es23 %
@hadrianwild@hadrianwild/not-entirely-peaceful-dove-smap21 %
@janitzearratia@janitzearratia/pretending-that-everything-is-fine20 %
@jhymi@jhymi/test-chase22 %
@suteru@suteru/opening-10-elite-draws21 %
@g2ml@g2ml/blusa-con-mangas-largas-fruncidas-con-elastico-blouse-with-long-sleeves-gathered-with-elastic-esp-eng20 %
@mnurhiver@mnurhiver/two-interesting-types-of-insects25 %
@aries12@aries12/macrophotography-wildflowers-d94c70dad999520 %
@florenceboens@florenceboens/nos-petits-repas-de-debut-avril-202421 %
@wiseagent@wiseagent/lpud-the-fourth-of-the-year40 %
@dewabrata@dewabrata/the-five-alive-think-it-as-ordinary25 %
@idea-make-rich@idea-make-rich/indian-s-sweet-dish-name22 %
@pinkchic@pinkchic/discovering-the-amazing-mountain-ranges-of-impasugong26 %
@gadrian@gadrian/my-hive-goals-week-15-202422 %
@plantfuljourney@plantfuljourney/floral-harmony-in-the-garden20 %
@lincemarrom@lincemarrom/five-alive-battle-mage-secrets-enptbr20 %
@codingdefined@codingdefined/april-lpud-and-my-goal-status40 %
@emrysjobber@emrysjobber/s-s-s-s-s-8998d0cceeea320 %

What do you think?

  • What do you guys think?
  • Am I heading in right direction? Am I doing good for Hive?
  • Do you have some tips to share? If yes, add it in comment section.

Who am I?

Support me

  • Please upvote my content to motivate me
  • Please Reblog
  • Please vote me as Hive Witness

Vote me as Hive Witness


Support @sagarkothari88

Sort:  

Thank you so much for mentioning me.Always healthy for you.

You are most welcome @mnurhiver
Thank you for health wishes.
Thank you for checking out my post & adding a comment.

!GIF You are welcome

You're welcome. I'm very happy to be able to visit your post. So how are you today friend. My wishes are always the best for you and always have beautiful days. @sagarkothari88

Arey bhai
Difficulty lage to, Hindi Ya Gujarati, likh lo.
Tension mat lo.
Ji main aaye wo bolo.

Oops. I was mistaken. I assumed you're Bharatiya 🇮🇳

but you are from Aceh, Indonesia 🇮🇩

I was suggesting that you use your own language, I'll translate & understand what you're trying to say.

Thanks for your support and your generosity. I think you are doing a splendid job and always appreciate your efforts to bring attention to the many communities you get involved with.

You are most welcome @thebigsweed

Thank you for motivative words. I'll keep up my best work.

Thank you for checking out my post & adding a comment.

!GIF You are awesome

Gracias por el apoyo, es genial 😊

You are most welcome @neilamarcano

Thank you for checking out my post & adding a comment.

!GIF You are welcome

Thanks for supporting, I appreciate it!

You are most welcome @michupa

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you

!GIF You are welcome

@michupa! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (2/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

Thanks You ♥️

Thank you for your witness vote!
Have a !BEER on me!
To Opt-Out of my witness beer program just comment STOP below

You are most welcome @brujita18

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you
!PIZZA token gift for you

!GIF You are welcome

@brujita18! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (7/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

Thanks You 😃

Thanks you 😘

This post has been manually curated by @bhattg from Indiaunited community. Join us on our Discord Server.

Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight.

Here are some handy links for delegations: 100HP, 250HP, 500HP, 1000HP.

image.png

100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited..

This post received an extra 10.00% vote for delegating HP / holding IUC tokens.

Thankssss You so much, Indeed @sagarkothari88 @yogeshbhatt

You are most welcome @janitzearratia

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you

!GIF You are welcome

@janitzearratia! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (3/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

Thanks You very much 🤗💕

You are most welcome @carisma77

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you
!PIZZA token gift for you

!GIF You are welcome

@carisma77! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (6/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

Success! You received a witness vote!
Great to see your work!

Thank you so much @crazyphantombr for the witness vote
I'll keep up my best work.

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you
!PIZZA token gift for you

!GIF Thank you

@crazyphantombr! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (5/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

Congratulations to them all that got mentioned here.
You are doing amazing work here.
Looking forward to have such honor to be mentioned here too.
Keep up the good work. Cheers 🥂

You are most welcome @sammiex

Thank you for checking out my post & adding a comment. Thank you for motivating words.

!ALIVE token gift for you

!GIF You are welcome

@sammiex! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (1/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

thanks for the supports

untitled.gif

You are most welcome @dewabrata
You are also awesome.

Thank you for checking out my post & adding a comment.

!ALIVE token gift for you

!GIF You are awesome

@dewabrata! You Are Alive so I just staked 0.1 $ALIVE to your account on behalf of @ sagarkothari88. (4/10)

The tip has been paid for by the We Are Alive Tribe through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power (2x 50 HP) and Alive Power (2x 500 AP) delegations (4 weeks), and Ecency Points (4x 50 EP), in our chat every day.

PIZZA!

$PIZZA slices delivered:
@sagarkothari88(3/5) tipped @brujita18
sagarkothari88 tipped carisma77
sagarkothari88 tipped crazyphantombr

Congratulations @sagarkothari88! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

You got more than 6500 replies.
Your next target is to reach 6750 replies.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

Thank you @hivebuzz

Trying my best to get more replies & give more replies.

Being buzzy bee on hive

You're welcome @sagarkothari88. Looking forward to you reaching your new target 😅

You're doing a great job friend.

Bravo

Thank you so much @bhetea01
I'll keep up the good work.