Skip to content

Instantly share code, notes, and snippets.

@sofyan-ahmad
sofyan-ahmad / print_repo_urls.bash
Created May 31, 2022 05:16
Gitlab: Print all repos under a group
for repo in $(curl -s --header "PRIVATE-TOKEN: YOUR_TOKEN" "https://gitlab.com/api/v4/groups/YOUR_GROUP?include_subgroups=true&per_page=100" | jq -r ".projects[].http_url_to_repo"); do echo $repo; done;
@sofyan-ahmad
sofyan-ahmad / YourModel.js
Created March 24, 2021 03:51
Strapi.io - Cache strapi on service level
// strapi/api/${YourModel}/services/${YourModel}
const crypto = require('crypto');
const redisClient = require('../../../cache/redis');
const sendNotification = require('./notification');
/**
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services)
* to customize this service
*/
@sofyan-ahmad
sofyan-ahmad / permissions.js
Created March 24, 2021 03:38
Strapi.io - cache graphql query request with custom api token and check user permission before return value from cache
// strapi/extensions/users-permissions/config/policies/permissions.js
const _ = require('lodash');
const crypto = require('crypto');
const redisClient = require('../../../../cache/redis');
const handleErrors = (ctx, err = undefined, type) => {
throw strapi.errors[type](err);
};
@sofyan-ahmad
sofyan-ahmad / aws-amplify-react-native.d.ts
Last active March 24, 2021 14:31
aws amplify react native typescript definition
declare module 'aws-amplify-react-native' {
const Amplify: any;
export default Amplify;
// *** UI ***
interface ITheme {
container: {};
section: {};
sectionHeader: {};
sectionHeaderText: {};
import {HttpException, Injectable} from '@nestjs/common';
import {google} from 'googleapis';
import {GoogleApiService} from '../googleApi/googleApi.service';
@Injectable()
export class GoogleSheetService {
constructor(private readonly googleApiService: GoogleApiService) {}
async readSheet(): Promise<any[]> {
import {Body, Controller, Get, Post, Render} from '@nestjs/common';
import {GoogleApiService} from './googleApi.service';
@Controller()
export class GoogleApiController {
constructor(private readonly service: GoogleApiService) {}
@Get('authorize')
@Render('main')
import {HttpException, Injectable} from '@nestjs/common';
import {Credentials, OAuth2Client} from 'google-auth-library';
import {google} from 'googleapis';
import _ from 'lodash';
import fs from 'fs';
import util from 'util';
import credentialsJson from '../../../credentials.json';
import {IGoogleToken} from './googleToken.interface';
@sofyan-ahmad
sofyan-ahmad / authStorage.ts
Last active February 3, 2021 06:52
AWS Amplify Custom Asyncstorage
import {Auth} from 'aws-amplify';
import AsyncStorage from '@react-native-community/async-storage';
import {ICognitoStorage} from 'amazon-cognito-identity-js';
const MEMORY_KEY_PREFIX = '@fcAuth:';
let dataMemory = {};
const syncPromise: Promise<any> = null;
/**
* This is used to set a specific item in storage
import axios from 'axios';
export const getSignedURL = async (
url: string,
file: File
): Promise<{ fileName: string; s3Url: string }> => {
try {
const endpoint = url;
const payload = {
filePath: file.name,
<template>
<div>
<dropzone
ref="product-image"
v-model="tempProductData.image"
:label="$t('table.image')"
:signed-api="signedAPIRequest"
/>
<el-button @click="uploadImage">Upload</el-button>