🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

@tinacms/auth

Package Overview
Dependencies
Maintainers
5
Versions
205
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tinacms/auth

This package contains all the [Next.js](https://nextjs.org/) specific code for TinaCloud

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
5
Created
Source

@tinacms/auth

This package contains all the Next.js specific code for TinaCloud

Authorize user function

The authorize user function Reaches out to TinaCloud and returns the current user if one exists. The reason for this is to allow one to work with external services and only let those with a TinaCloud account access the backend code.

An example use case might be allowing logged-in users to upload images to cloudinary or S3.

Backend code / Serverless function.

In Next.js you can write backend code in the pages/api/ folder. For more information checkout the Next.js docs.

For our example lets make a file called pages/api/upload.ts.

import { NextApiHandler } from 'next'
import { isAuthorized } from '@tinacms/auth'
const apiHandler: NextApiHandler = async (req, res) => {

  // This will check if the user is logged in. It will return undefined if the user token is not valid
  const user = await isAuthorized(req)
  if (user && user.verified) {
    console.log('this user is logged in')
    // now you could (for example) upload images
    await imageUploadFunction(req, res)
    res.json({
       validUser: true,
    })
    return
  } else {
    console.log('this user NOT is logged in')
    res.json({
       validUser: false,
    })
  }
}

export default apiHandler

The isAuthorized function takes in the req and returns undefined if there is no user and returns a TinaCloudUser if the user is logged in.

interface TinaCloudUser {
  id: string
  email: string
  verified: boolean
  role: 'admin' | 'user'
  enabled: boolean
  fullName: string
}

Frontend code

Now in our media manager, or someone in the frontend code that is wrapped with TinaCloudAuthWall we can do the following.

const cms = useCMS()
const tinaCloudClient: Client = cms.api.tina
const uploadImage = async () => {
  const req = await tinaCloudClient.fetchWithToken(`/api/upload?clientID=${tinaCloudClient.clientId}`)
  console.log({ test: await test.json() })
}

The fetchWithToken function is just the normal fetch function but adds the authorization header with the correct token.

You also have to add two query Params to the request; org which is the current organization and clientID. Both of these can be found in the cms.api.tina.

FAQs

Package last updated on 07 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts