Delete an email

Your appendable data has a maximum size of 100 KiB. You can delete emails from your inbox folder by removing them from your appendable data. Your root structured data has no size limit. You can delete emails from your saved folder by removing them from your root structured data.

Contents

Inbox page

If the email was in the inbox folder

The emails in your inbox folder are stored in your appendable data. If you want to delete an email from your inbox folder, you just need to remove it from your appendable data.

Get a data identifier handle

First, the app fetches a data identifier handle for the appendable data representing your inbox folder.

POST /data-id/appendable-data

data_id_handle_actions.js

export const getAppendableDataIdHandle = (token, name) => ({
  type: ACTION_TYPES.GET_STRUCTURED_DATA_ID_HANDLE,
  payload: {
    request: {
      method: 'post',
      url: '/data-id/appendable-data',
      headers: {
        'Authorization': token
      },
      data: {
        isPrivate: true,
        name
      }
    }
  }
});

The name of the appendable data is obtained by hashing your email ID:

app_utils.js

export const hashEmailId = emailId => {
  return crypto.createHash('sha256').update(emailId).digest('base64');
};

Get an appendable data handle

The app fetches an appendable data handle using the data identifier handle representing your inbox folder.

GET /appendable-data/handle/:dataIdHandle

appendable_data_actions.js

export const fetchAppendableDataHandle = (token, dataIdHandle) => { // id => appendable data id
  return {
    type: ACTION_TYPES.FETCH_APPENDABLE_DATA_HANDLER,
    payload: {
      request: {
        url: `/appendable-data/handle/${dataIdHandle}`,
        headers: {
          'Authorization': token,
          'Is-Private': true
        }
      }
    }
  };
};

Drop the data identifier handle

The app drops the data identifier handle for the appendable data representing your inbox folder.

DELETE /data-id/:handleId

data_id_handle_actions.js

export const dropHandler = (token, handleId) => ({
  type: ACTION_TYPES.DROP_HANDLER,
  payload: {
    request: {
      method: 'delete',
      url: `/data-id/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

Remove the email from the appendable data

The app removes the email you just deleted from your appendable data. This moves the email to the deleted_data field of the appendable data.

DELETE /appendable-data/:handleId/:index

appendable_data_actions.js

export const removeFromAppendableData = (token, handleId, index) => {
  return {
    type: ACTION_TYPES.REMOVE_FROM_APPENDABLE_DATA,
    payload: {
      request: {
        method: 'delete',
        url: `/appendable-data/${handleId}/${index}`,
        headers: {
          'Authorization': token
        }
      }
    }
  };
};

Save the appendable data

The app saves your appendable data by sending a POST request to the SAFE Network.

POST /appendable-data/:handleId

appendable_data_actions.js

export const postAppendableData = (token, handleId) => ({
  type: ACTION_TYPES.POST_APPENDABLE_DATA,
  payload: {
    request: {
      method: 'post',
      url: `/appendable-data/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

Clear the deleted data of the appendable data

The app clears the deleted_data field of your appendable data.

DELETE /appendable-data/clear-deleted-data/:handleId

appendable_data_actions.js

export const clearDeletedData = (token, handleId) => ({
  type: ACTION_TYPES.CLEAR_DELETE_DATA,
  payload: {
    request: {
      method: 'delete',
      url: `/appendable-data/clear-deleted-data/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

Save the appendable data (again)

The app saves your appendable data by sending a POST request to the SAFE Network.

POST /appendable-data/:handleId

appendable_data_actions.js

export const postAppendableData = (token, handleId) => ({
  type: ACTION_TYPES.POST_APPENDABLE_DATA,
  payload: {
    request: {
      method: 'post',
      url: `/appendable-data/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

Drop the appendable data handle

The app drops the appendable data handle and refreshes the inbox folder.

DELETE /appendable-data/handle/:handleId

appendable_data_actions.js

export const dropAppendableDataHandle = (token, handleId) => ({
  type: ACTION_TYPES.DROP_APPENDABLE_DATA_HANDLE,
  payload: {
    request: {
      method: 'delete',
      url: `/appendable-data/handle/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

If the email was in the saved folder

The emails in your saved folder are stored in your root structured data. If you want to remove an email from your saved folder, you just need to remove it from your root structured data.

When you click on the "Delete" button, the app removes the email you want to delete from your saved folder.

Get a cipher options handle

First, the app fetches a cipher options handle for symmetric encryption.

/cipher-opts/:encType/:keyHandle?

cipher-opts_actions.js

export const getCipherOptsHandle = (token, encType, keyHandle='') => ({
  type: ACTION_TYPES.GET_CIPHER_OPTS_HANDLE,
  payload: {
    request: {
      url: `/cipher-opts/${encType}/${keyHandle}`,
      headers: {
        'Authorization': token,
      }
    }
  }
});

Update the root structured data

The app updates the JSON data contained in your root structured data and encrypts it using symmetric encryption. Since the email you want to delete was removed from your saved folder, this means that the new version of your root structured data won't contain that email.

PATCH /structured-data/:handleId

structured_data_actions.js

export const updateStructuredData = (token, handleId, data, cipherOpts) => ({
  type: ACTION_TYPES.UPDATE_STRUCTURED_DATA,
  payload: {
    request: {
      method: 'patch',
      url: `/structured-data/${handleId}`,
      headers: {
        'Authorization': token
      },
      data: {
        cipherOpts,
        data: new Buffer(JSON.stringify(data)).toString('base64')
      }
    }
  }
});

Save the root structured data

The app saves your root structured data to the SAFE Network.

POST /structured-data/:handleId

structured_data_actions.js

export const postStructuredData = (token, handleId) => ({
  type: ACTION_TYPES.POST_STRUCTURED_DATA,
  payload: {
    request: {
      method: 'post',
      url: `/structured-data/${handleId}`,
      headers: {
        'Authorization': token
      }
    }
  }
});

Drop the cipher handle

The app drops the "cipher options" handle for symmetric encryption.

DELETE /cipher-opts/:handleId

cipher-opts_actions.js

export const deleteCipherOptsHandle = (token, handleId) => ({
  type: ACTION_TYPES.DELETE_CIPHER_OPTS_HANDLE,
  payload: {
    request: {
      method: 'delete',
      url: `/cipher-opts/${handleId}`,
      headers: {
        'Authorization': token,
      }
    }
  }
});

Fetch the root structured data

To refresh your saved folder, the app fetches your root structured data.

GET /structured-data/:handleId/:version?

structured_data_actions.js

export const fetchStructuredData = (token, handleId) => ({
  type: ACTION_TYPES.FETCH_STRUCTURED_DATA,
  payload: {
    request: {
      url: `/structured-data/${handleId}`,
      headers: {
        'Authorization': token,
        'Content-Type': 'text/plain'
      }
    }
  }
});

Last updated

Was this helpful?