Skip to content

Commit

Permalink
Merge branch 'dishamodi0910:master' into visitor-counter-api
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalsurojit authored Jun 23, 2024
2 parents c1f6993 + 4484884 commit 027536e
Show file tree
Hide file tree
Showing 19 changed files with 4,740 additions and 1 deletion.
113 changes: 113 additions & 0 deletions .github/workflows/identify_spam_prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
name: Restrict Contributor to limited contributions in APIVerse

on:
pull_request_target:
types:
- opened

jobs:
evaluate_and_close:
runs-on: ubuntu-latest

steps:
- name: Check merged pull requests and calculate score
id: calculate_score
uses: actions/github-script@v4
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
script: |
const owner = context.repo.owner;
const repo = context.repo.repo;
const pullRequestOpener = context.payload.pull_request.user.login;
let mergedPullRequests = [];
let page = 1;
let perPage = 100;
let response;
do {
response = await github.pulls.list({
owner,
repo,
state: 'closed',
per_page: perPage,
page: page
});
mergedPullRequests = mergedPullRequests.concat(response.data.filter(pr => pr.user.login === pullRequestOpener && pr.merged_at !== null));
page++;
} while (response.data.length === perPage);
let score = 0;
let prDetails = [];
const scoreMap = {
'level3': 45,
'level2': 25,
'level1': 10
};
for (const pr of mergedPullRequests) {
let prScore = 0;
let labelsWithScores = [];
for (const label of pr.labels) {
if (scoreMap[label.name]) {
prScore += scoreMap[label.name];
labelsWithScores.push(`${label.name} score: (${scoreMap[label.name]})`);
}
}
score += prScore;
if (labelsWithScores.length > 0) {
prDetails.push(`- [#${pr.number}](${pr.html_url}) with labels: ${labelsWithScores.join(', ')}`);
}
}
const threshold = 150;
console.log(`User score: ${score}`);
console.log(`Score threshold: ${threshold}`);
if (score >= threshold) {
const comment = `Hey @${pullRequestOpener}, You have reached your limit to contribute in APIVerse with a score of ${score}. \n We believe in giving equal opportunity to everyone so you will not be able to contribute to APIVerse now onwards. 💗 \n Thank you for your valuable time and contribution in APIVerse 😀! \n\n Your merged pull requests:\n${prDetails.join('\n')}`;
core.exportVariable('comment_body', comment);
core.setOutput('close_pull_request', true);
} else {
core.exportVariable('comment_body', '');
core.setOutput('close_pull_request', false);
}
- name: Add spam label and close the pull request
if: always() && steps.calculate_score.outputs.close_pull_request == 'true'
uses: actions/github-script@v4
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
script: |
const owner = context.repo.owner;
const repo = context.repo.repo;
const pullRequestNumber = context.payload.pull_request.number;
const comment = process.env.comment_body;
if (comment.trim() === '') {
console.log('Comment body is empty. Skipping comment creation.');
return;
}
await github.issues.createComment({
owner,
repo,
issue_number: pullRequestNumber,
body: comment
});
await github.issues.addLabels({
owner,
repo,
issue_number: pullRequestNumber,
labels: ['spam🚨']
});
await github.pulls.update({
owner,
repo,
pull_number: pullRequestNumber,
state: 'closed'
});
31 changes: 31 additions & 0 deletions Existing_API_Collection/Brewery_API/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Brewery Finder

Welcome to the Brewery Finder API! This API is designed to help you explore the world of breweries by providing detailed information about various breweries across different states. Just select a state, and I'll guide you to discover exciting breweries near you!

## Features
- **Fetch Detailed Information about Breweries:** Get comprehensive data about breweries, including their name, type, city, state, country, phone, and website URL.
- **Random Brewery:** Discover a random brewery every time you click the "Random Brewery" button.
- **Error Handling:** Robust error handling to ensure meaningful error messages and smooth API usage.
- **Simple and Easy-to-Use Interface:** Designed with utmost simplicity for an easy and intuitive user experience.
- **Search Functionality:** Easily search for breweries by selecting a state from the dropdown list.
- **Sort Breweries:** Sort breweries alphabetically by name, city, or type.

## Technologies Used
- HTML
- Vanilla CSS
- JavaScript
- API ( for fetching data )

# API Integration
This application uses the [Open Brewery DB API](https://www.openbrewerydb.org/documentation/01-listbreweries) to fetch brewery data.

## Installation
To set up the Brewery Finder API locally, follow these steps:

1. Clone the repository.
2. Switch to Existing_API_Collection folder `cd Existing_API_Collection`
3. Navigate to the `Brewery_API` directory.
4. Open the `index.html` file in your browser.

## Screenshot
![Screenshot](brewery.png)
Binary file added Existing_API_Collection/Brewery_API/brewery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions Existing_API_Collection/Brewery_API/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<title>Brewery Finder</title>
</head>

<body>
<div class="container">
<h1>Brewery Finder</h1>
<div class="search_wrapper">
<select id="state_select">
<option value="" disabled selected>Select a state</option>
</select>
<label>Sort By:</label>
<input type="radio" name="sort" value="name" checked> Name
<input type="radio" name="sort" value="city"> City
<input type="radio" name="sort" value="type"> Type
<button id="search_btn">Search</button>
</div>
<div id="result"></div>
<button id="random_btn">🍺 Feeling Lucky? Find a Random Brewery!</button>
</div>
<script src="script.js"></script>
</body>

</html>
99 changes: 99 additions & 0 deletions Existing_API_Collection/Brewery_API/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
const stateSelect = document.getElementById("state_select");
const searchBtn = document.getElementById("search_btn");
const randomBtn = document.getElementById("random_btn");
const result = document.getElementById("result");

// Function to fetch all states
async function fetchStates() {
try {
const response = await fetch("https://api.openbrewerydb.org/breweries");
const data = await response.json();
const states = new Set(data.map(brewery => brewery.state).filter(state => state));
states.forEach(state => {
const option = document.createElement("option");
option.value = state;
option.textContent = state;
stateSelect.appendChild(option);
});
} catch (error) {
console.error("Error fetching states:", error);
}
}

// Function to fetch breweries by state
async function fetchBreweriesByState(stateName, sortBy = 'name') {
try {
const response = await fetch(`https://api.openbrewerydb.org/v1/breweries?by_state=${stateName}&sort=${sortBy}&per_page=10`);
const data = await response.json();
if (data.length === 0) {
result.innerHTML = "<h3>No breweries found in this state</h3>";
return;
}
result.innerHTML = "";
data.forEach(brewery => {
result.innerHTML += `
<div class="brewery_card">
<h2>${brewery.name}</h2>
<div class="brewery_details">
<p><strong>Type:</strong> ${brewery.brewery_type}</p>
<p><strong>City:</strong> ${brewery.city}</p>
<p><strong>State:</strong> ${brewery.state}</p>
<p><strong>Country:</strong> ${brewery.country}</p>
<p><strong>Phone:</strong> ${brewery.phone}</p>
<p><strong>Website:</strong> <a href="${brewery.website_url}" target="_blank">${brewery.website_url}</a></p>
</div>
</div>
`;
});
} catch (error) {
result.innerHTML = "<h3>Error fetching data. Please try again later.</h3>";
console.error("Error fetching breweries by state:", error);
}
}

// Function to fetch a random brewery
async function fetchRandomBrewery() {
try {
const response = await fetch('https://api.openbrewerydb.org/breweries');
const data = await response.json();
const randomIndex = Math.floor(Math.random() * data.length);
const brewery = data[randomIndex];
result.innerHTML = `
<div class="brewery_card">
<h2>${brewery.name}</h2>
<div class="brewery_details">
<p><strong>Type:</strong> ${brewery.brewery_type}</p>
<p><strong>City:</strong> ${brewery.city}</p>
<p><strong>State:</strong> ${brewery.state}</p>
<p><strong>Country:</strong> ${brewery.country}</p>
<p><strong>Phone:</strong> ${brewery.phone}</p>
<p><strong>Website:</strong> <a href="${brewery.website_url}" target="_blank">${brewery.website_url}</a></p>
</div>
</div>
`;
} catch (error) {
result.innerHTML = "<h3>Error fetching data. Please try again later.</h3>";
console.error("Error fetching random brewery:", error);
}
}

// Event listener for search button
searchBtn.addEventListener("click", () => {
const selectedState = stateSelect.value;
if (!selectedState) {
result.innerHTML = "<h3>Please select a state</h3>";
return;
}
const sortBy = document.querySelector('input[name="sort"]:checked').value;
fetchBreweriesByState(selectedState, sortBy);
});

// Event listener for random button
randomBtn.addEventListener("click", () => {
fetchRandomBrewery();
});

// Populate state select dropdown when the page loads
document.addEventListener("DOMContentLoaded", () => {
fetchStates();
});
95 changes: 95 additions & 0 deletions Existing_API_Collection/Brewery_API/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: rgb(254, 251, 237);
}

.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #ffffff;
/* background-color: #f8e7c2; */
border-radius: 8px;
box-shadow: 10px 10px 40px rgba(0.3, 0.3, 0.3, 0.3);
}

h1 {
text-align: center;
color: #572d00;
font-size: 36px;
margin-top: 0;
}

.search_wrapper {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

#state_select {
flex: 1;
padding: 10px;
font-size: 16px;
margin-right: 10px;
}

#search_btn,
#random_btn {
padding: 10px 20px;
background-color: #9a6200;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
margin-left: 10px;
}

#search_btn:hover,
#random_btn:hover {
background-color: #634000;
}

#result {
margin-top: 20px;
}

.brewery_card {
background-color: #fff7e5;
padding: 20px;
margin-bottom: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brewery_card h2 {
margin-top: 0;
margin-bottom: 10px;
}

.brewery_details p {
margin: 5px 0;
}

#random_btn {
display: block;
width: 100%;
margin-top: 20px;
background-color: #9a6200;
font-size: 18px;
text-align: center;
padding: 15px;
border-radius: 10px;
border: none;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* box-shadow: 10px 10px 40px rgba(0.3, 0.3, 0.3, 0.3); */
}

#random_btn:hover {
background-color: #634000;
}
Loading

0 comments on commit 027536e

Please sign in to comment.