Skip to content

Instantly share code, notes, and snippets.

View linux08's full-sized avatar
📚
Learning.

David Abimbola linux08

📚
Learning.
View GitHub Profile
func JwtVerify(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var header = r.Header.Get("x-access-token") //Grab the token from the header
header = strings.TrimSpace(header)
if header == "" {
//Token is missing, returns with error code 403 Unauthorized
w.WriteHeader(http.StatusForbidden)
const code =fs.readFileSync('./contracts/StoreHash.sol').toString();
const solc = require('solc');
const compiledCode = solc.compile(code);
const abi =JSON.parse(compiledCode.contracts[':SaveAddress'].interface);
const SavingContract = new web3.eth.Contract(abi, '0xb1caf625d9d29421dfd8dae4a7a9083b4175f80a');
// where 0xb1caf625d9d29421dfd8dae4a7a9083b4175f80a is the ethereum address
exports.uploadFile = async (req, res, next) => {
if (!req.file) {
return res.status(422).json({
error: 'File needs to be provided.',
});
}
const mime = req.file.mimetype;
if (mime.split('/')[0] !== 'image') {
fs.unlink(req.file.path);
import Axios from 'axios';
import JwtDecode from 'jwt-decode';
const token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkFiaW1ib2xhMTMwQGdtYWlsLmNvbSIsImlhdCI6MTU3MDIyMzQyNCwiZXhwIjoxNTcwMjIzNjA0fQ.fIMfLpVZOjt9W1Kk6gSippRCA8XvRsOo94jQkC1lSXE";
const axios = Axios.create({
baseURL: 'https://url.com',
timeout: 80000,
headers: {
'Content-Type': 'application/json',
func Handlers() *mux.Router {
r := mux.NewRouter().StrictSlash(true)
r.Use(CommonMiddleware)
r.HandleFunc("/", controllers.TestAPI).Methods("GET")
r.HandleFunc("/api", controllers.TestAPI).Methods("GET")
r.HandleFunc("/register", controllers.CreateUser).Methods("POST")
r.HandleFunc("/login", controllers.Login).Methods("POST")
func Login(w http.ResponseWriter, r *http.Request) {
user := &models.User{}
err := json.NewDecoder(r.Body).Decode(user)
if err != nil {
var resp = map[string]interface{}{"status": false, "message": "Invalid request"}
json.NewEncoder(w).Encode(resp)
return
}
resp := FindOne(user.Email, user.Password)
json.NewEncoder(w).Encode(resp)
import (
"auth/models"
"auth/utils"
"encoding/json"
"fmt"
"net/http"
"golang.org/x/crypto/bcrypt"
)
package utils
import (
"auth/models"
"fmt"
"log"
"os"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres" //Gorm postgres dialect interface
package models
import (
"github.com/jinzhu/gorm"
)
//User struct declaration
type User struct {
gorm.Model
Name string
exports.scrapeTwittter = async (req, res) => {
let ret = [];
const { search } = req.query;
try {
const browser = await puppeteer.launch({ args: ['--no-sandbox', '--disable-setuid-sandbox'] });
const page = await browser.newPage();
await page.goto(`https://twitter.com/search?f=tweets&vertical=default&q=${search}&src=typd`);
//set viewport for the autoscroll function
await page.setViewport({
width: 1200,