Skip to content

Commit

Permalink
define function
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1l1pF committed Sep 1, 2023
1 parent e488500 commit f6d2467
Show file tree
Hide file tree
Showing 12 changed files with 573 additions and 1 deletion.
17 changes: 16 additions & 1 deletion backend/Versteigerungs-App/Versteigerungs-App.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Versteigerungs-App", "Versteigerungs-App\Versteigerungs-App.csproj", "{2A70386B-8393-4D6E-B463-2B978E6C1631}"
# Visual Studio Version 17
VisualStudioVersion = 17.4.33205.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Versteigerungs-App", "Versteigerungs-App\Versteigerungs-App.csproj", "{2A70386B-8393-4D6E-B463-2B978E6C1631}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersteigerungsFunction", "VersteigerungsFunction\VersteigerungsFunction.csproj", "{C81E139A-7DD7-4D19-B5E5-9BB51B57F3BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -12,5 +17,15 @@ Global
{2A70386B-8393-4D6E-B463-2B978E6C1631}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2A70386B-8393-4D6E-B463-2B978E6C1631}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2A70386B-8393-4D6E-B463-2B978E6C1631}.Release|Any CPU.Build.0 = Release|Any CPU
{C81E139A-7DD7-4D19-B5E5-9BB51B57F3BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C81E139A-7DD7-4D19-B5E5-9BB51B57F3BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C81E139A-7DD7-4D19-B5E5-9BB51B57F3BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C81E139A-7DD7-4D19-B5E5-9BB51B57F3BA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9A660C0E-55B9-449E-BAC8-48136594D1A9}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
using System.Text.Json;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Versteigerungs_App.Models;
using Versteigerungs_App.Services;

public class AuctionFunction
{

private readonly IAuctionService _auctionService;
private readonly ILogger<AuctionFunction> _logger;

public AuctionFunction(IAuctionService auctionService, ILogger<AuctionFunction> logger)
{
_auctionService = auctionService;
_logger = logger;
}

[Authorize]
[FunctionName("SetAuctionTimes")]
public async Task<IActionResult> SetAuctionTimes(
[HttpTrigger(AuthorizationLevel.Function, "patch", Route = "auction/times")] HttpRequest req)
{
try
{
// Validate admin access here (you'll need to implement this logic)
// if (!User.GetUser().IsAdmin())
// {
// return new UnauthorizedResult();
// }

var requestBody = await new StreamReader(req.Body).ReadToEndAsync();
var auctionTimes = JsonSerializer.Deserialize<AuctionTime>(requestBody) ?? throw new ArgumentException("Invalid request body.");

var success = await _auctionService.SetAuctionTimes(auctionTimes.StartTime, auctionTimes.EndTime);
if (success)
{
return new OkObjectResult("Auction times set successfully.");
}

return new BadRequestObjectResult("Auction times could not be set.");
}
catch (Exception ex)
{
_logger.LogError(ex, "An error occurred while processing the request.");
return new StatusCodeResult(500);
}
}

[FunctionName("GetAuctionTimes")]
public async Task<IActionResult> GetAuctionTimes(
[HttpTrigger(AuthorizationLevel.Function, "get", Route = "auction/times")] HttpRequest req)
{
try
{
var auctionTimes = await _auctionService.GetAuctionTimes();
return new OkObjectResult(auctionTimes);
}
catch (Exception ex)
{
_logger.LogError(ex, "An error occurred while processing the request.");
return new StatusCodeResult(500);
}
}
}
10 changes: 10 additions & 0 deletions backend/Versteigerungs-App/Versteigerungs-App/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@
.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
{
options.Events = new JwtBearerEvents()
{
OnAuthenticationFailed = c =>
{
Console.WriteLine();
return null!;
}
};
var url = "https://sts.windows.net/393f7f62-ffae-4740-b443-bd04273d7320/";
options.RequireHttpsMetadata = false;
options.Authority = url;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Web" Version="2.13.3" />
<PackageReference Include="MongoDB.Driver" Version="2.21.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />
</ItemGroup>

</Project>
264 changes: 264 additions & 0 deletions backend/Versteigerungs-App/VersteigerungsFunction/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# Azure Functions localsettings file
local.settings.json

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
project.fragment.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
#*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml

# CodeRush
.cr/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
Loading

0 comments on commit f6d2467

Please sign in to comment.